programming:make
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
programming:make [2021/02/04 14:43] – peter | programming:make [2021/02/04 16:34] (current) – peter | ||
---|---|---|---|
Line 5: | Line 5: | ||
---- | ---- | ||
- | [[Programming: | + | [[Programming: |
- | ---- | + | [[Programming: |
- | ===== Basic Example ===== | + | [[Programming: |
- | + | ||
- | ==== 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 | ||
- | </ | ||
- | </ | ||
programming/make.1612449828.txt.gz · Last modified: 2021/02/04 14:43 by peter