root / proj / DR.mk @ 195
History | View | Annotate | Download (494 Bytes)
1 |
PROG=proj |
---|---|
2 |
|
3 |
.PATH: ${.CURDIR}/src |
4 |
.PATH: ${.CURDIR}/../lab2/src |
5 |
.PATH: ${.CURDIR}/../lab3/src |
6 |
.PATH: ${.CURDIR}/../lab4/src |
7 |
.PATH: ${.CURDIR}/../lab5/src |
8 |
|
9 |
SRCS= proj.c graph.c sprite.c kbc.c keyboard.c mouse.c utils.c timer.c interrupts_func.c proj_func.c fast_math.c rectangle.c font.c xpm_utils.c ent.c |
10 |
|
11 |
CPPFLAGS += -pedantic -I./include -I../lab2/include -I./bmp -I./xpm -D LCOM_MACRO -D DIOGO -D __LCOM_OPTIMIZED_ |
12 |
|
13 |
DPADD += ${LIBLCF} |
14 |
LDADD += -llcf |
15 |
|
16 |
.include <minix.lcom.mk> |