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.c
file, we have code that simply prints theHello, welcome to my first package
statement. -
In the
Makefile
file, we specify theusr/bin
directory ...