# Comment lines can appear anywhere Macros section (will be discussed later) Rules section |
|
We will now discuss macros...
(You have seen the rules section)
|
src-pattern = replacement-pattern |
Meaning:
|
Purpose:
|
|
CC=gcc # Compiler command CFLAGS=-c # Compiler options OFLAG=-o # Output flag main: func5a.o func5b.o $(CC) $(OFLAG) main func5a.o func5b.o %.o: %.c func5b.h $(CC) $(CFLAGS) $< |
How to run the program:
|
|