User Tools

Site Tools


programming:make:basic_make_example

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
programming:make:basic_make_example [2021/02/04 14:45] peterprogramming:make:basic_make_example [2021/02/04 16:33] (current) peter
Line 99: Line 99:
  
 <WRAP info> <WRAP info>
-**NOTE:  The implicit rule being used is:+**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
 </code> </code>
 +</WRAP>
 +
 +----
 +
 +===== 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
 +</file>
 +
 +<WRAP info>
 +**NOTE:**  Thanks to the default rules, this is all that is needed by Make.
 +
 +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.
 </WRAP> </WRAP>
  
programming/make/basic_make_example.1612449916.txt.gz · Last modified: 2021/02/04 14:45 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki