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