programming:make:basic_make_example
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
programming:make:basic_make_example [2021/02/04 14:44] – created peter | programming:make:basic_make_example [2021/02/04 16:33] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Programming - Make - Basic Make Example ====== | ====== Programming - Make - Basic Make Example ====== | ||
+ | |||
+ | ===== Basic Example ===== | ||
+ | |||
+ | ==== Create a C program ==== | ||
+ | |||
+ | <file c hello.c> | ||
+ | #include < | ||
+ | |||
+ | int main() | ||
+ | { | ||
+ | printf(" | ||
+ | return 0; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Create a Makefile ==== | ||
+ | |||
+ | <file bash Makefile> | ||
+ | hello: hello.c | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Run Make ==== | ||
+ | |||
+ | <code bash> | ||
+ | make | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | cc | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | Most distributions will have cc pointing to the default C compiler. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Run Make Again ==== | ||
+ | |||
+ | <code bash> | ||
+ | make | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | make: ' | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | To have the program be recompiled: | ||
+ | |||
+ | * Run **touch hello.c**, or | ||
+ | * Delete the compiled program, **rm hello**, or | ||
+ | * Modify the C program and run make again. | ||
+ | |||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Enhanced Make ===== | ||
+ | |||
+ | Use variables within the Makefile: | ||
+ | |||
+ | <file bash Makefile> | ||
+ | CC=gcc | ||
+ | CFLAGS=-g | ||
+ | hello : hello.c | ||
+ | </ | ||
+ | |||
+ | returns: | ||
+ | |||
+ | <code bash> | ||
+ | gcc -g hello.c | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Add further options to the Makefile ===== | ||
+ | |||
+ | <code bash> | ||
+ | CC=gcc | ||
+ | CFLAGS=-g | ||
+ | # Comment next line to turn off optimization | ||
+ | CFLAGS+=-O | ||
+ | hello : hello.c | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | <code bash> | ||
+ | $(CC) $(CFLAGS) $(CPPFLAGS) hello.c -o hello | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Use an object ===== | ||
+ | |||
+ | Besides compiling, the Makefile can also link the object files: | ||
+ | |||
+ | <file bash Makefile> | ||
+ | hello : hello.o mylib.o | ||
+ | hello.o : hello.c hello.h mylib.h | ||
+ | mylib.o : mylib.c mylib.h | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | The make program is smart enough to see that it needs hello.o, it will go find the rule for hello.o and so on. | ||
+ | |||
+ | Of course, additional lines can be added to control further what happens for the build process. | ||
+ | </ | ||
programming/make/basic_make_example.1612449899.txt.gz · Last modified: 2021/02/04 14:44 by peter