programming:make:basic_make_example
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
programming:make:basic_make_example [2021/02/04 14:45] – peter | programming:make:basic_make_example [2021/02/04 16:33] (current) – peter | ||
---|---|---|---|
Line 99: | Line 99: | ||
<WRAP info> | <WRAP info> | ||
- | **NOTE: | + | **NOTE:** The implicit rule being used is: |
<code bash> | <code bash> | ||
$(CC) $(CFLAGS) $(CPPFLAGS) hello.c -o hello | $(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.1612449916.txt.gz · Last modified: 2021/02/04 14:45 by peter