root / proj / src / Makefile @ 382
History | View | Annotate | Download (980 Bytes)
1 | 144 | up20180655 | PROG=proj |
---|---|---|---|
2 | |||
3 | 355 | up20180642 | .PATH: ${.CURDIR}/project/src |
4 | 284 | up20180642 | .PATH: ${.CURDIR}/libs/graph/src |
5 | .PATH: ${.CURDIR}/libs/kbc/src |
||
6 | .PATH: ${.CURDIR}/libs/rtc/src |
||
7 | .PATH: ${.CURDIR}/libs/timer/src |
||
8 | .PATH: ${.CURDIR}/libs/uart/src |
||
9 | .PATH: ${.CURDIR}/libs/classes/src |
||
10 | .PATH: ${.CURDIR}/libs/utils/src |
||
11 | 177 | up20180642 | |
12 | 348 | up20180655 | SRCS= list.c queue.c graph.c kbc.c keyboard.c mouse.c utils.c timer.c interrupts_func.c fast_math.c xpm_utils.c rtc.c uart.c makecode_map.c menu.c proj_func.c rectangle.c font.c ent.c proj.c hltp.c zombies.c campaign.c singleplayer.c chat.c scoreboards.c |
13 | 355 | up20180642 | IPATHS=-I./project/include -I./libs -I./libs/graph/include -I./libs/kbc/include -I./libs/rtc/include -I./libs/timer/include -I./libs/uart/include -I./libs/classes/include -I./libs/utils/include -I./maps -I./media/xpm |
14 | 144 | up20180655 | |
15 | 381 | up20180655 | CPPFLAGS += -pedantic ${IPATHS} -D LCOM_MACRO #-D __LCOM_OPTIMIZED__ -Wall -Wextra -Wshadow -Wunreachable-code #-Weverything -Wno-padded -Wno-unused-macros |
16 | 144 | up20180655 | |
17 | DPADD += ${LIBLCF} |
||
18 | LDADD += -llcf |
||
19 | |||
20 | .include <minix.lcom.mk> |