root / lab3 / Makefile @ 8
History | View | Annotate | Download (464 Bytes)
1 | 4 | up20180614 | # name of the program (Minix service) |
---|---|---|---|
2 | PROG=lab3 |
||
3 | |||
4 | # source code files to be compiled |
||
5 | 8 | up20180614 | SRCS = lab3.c #timer.c utils.c |
6 | 4 | up20180614 | |
7 | # additional compilation flags |
||
8 | # "-Wall -Wextra -Werror -I . -std=c11 -Wno-unused-parameter" are already set |
||
9 | CFLAGS += -pedantic |
||
10 | 7 | up20180614 | CPPFLAGS += -D LAB3 |
11 | 4 | up20180614 | |
12 | # list of library dependencies (for Lab 2, only LCF library) |
||
13 | DPADD += ${LIBLCF} |
||
14 | LDADD += -llcf |
||
15 | |||
16 | # include LCOM's makefile that does all the "heavy lifting" |
||
17 | .include <minix.lcom.mk> |