Solution: The Debian Build System
Look at the solution to the “Debian Build System” challenge.
We'll cover the following...
#include <stdio.h>
int main(int argc, char** argv) {
printf("Hello, welcome to my first package\n");
}Project directory and code for building and installing a Debian package
Explanation
-
In the
welcome.cfile, we have code that simply prints theHello, welcome to my first packagestatement. -
In the
Makefilefile, we specify theusr/bindirectory ...
Ask