summaryrefslogtreecommitdiff
path: root/tools/checkwps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/checkwps/Makefile')
-rw-r--r--tools/checkwps/Makefile25
1 files changed, 19 insertions, 6 deletions
diff --git a/tools/checkwps/Makefile b/tools/checkwps/Makefile
index 70b6e0a963..069b1e4334 100644
--- a/tools/checkwps/Makefile
+++ b/tools/checkwps/Makefile
@@ -7,12 +7,25 @@
7# $Id$ 7# $Id$
8# 8#
9 9
10all: checkwps 10ROOT=../..
11 11
12checkwps: checkwps.c ../../apps/gui/wps_parser.c ../../apps/gui/wps_debug.c ../../firmware/common/ctype.c ../../apps/misc.c ../../apps/recorder/bmp.c 12COMMON=$(ROOT)/apps/gui/wps_parser.c \
13 $(SILENT)$(CC) -g -I ../../apps/gui -I../../firmware/export \ 13 $(ROOT)/apps/gui/wps_debug.c \
14-D__PCTOOL__ -DDEBUG -DROCKBOX_HAS_LOGF -DIPOD_COLOR -D ROCKBOX_DIR_LEN -D WPS_DIR=\".\" \ 14 $(ROOT)/apps/misc.c \
15-I../../apps -I../../firmware/target/arm/ipod -I../../firmware/include $+ -o $@ 15 $(ROOT)/apps/recorder/bmp.c
16
17INCLUDE=-I $(ROOT)/apps/gui \
18 -I $(ROOT)/firmware/export \
19 -I $(ROOT)/apps \
20 -I .
21
22CFLAGS = -g -D__PCTOOL__ -DDEBUG -DROCKBOX_DIR_LEN=9 -DWPS_DIR=\".\"
23
24all: checkwps.$(MODEL)
25
26checkwps.$(MODEL): checkwps.c $(COMMON)
27 @echo CC [$(TARGET)]
28 @$(CC) $(INCLUDE) $(CFLAGS) $(COMMON) -D$(TARGET) checkwps.c -o $@
16 29
17clean: 30clean:
18 rm -f cleanwps 31 rm -f checkwps.$(MODEL)