summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 76953c5..64995ab 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,13 @@ CSRCS=kmd.c status.c lcd.c input.c dispatch.c output.c map.c layout.c video_swit
WHERE=$(shell hostname | sed -e 's/^.*medaka.james.local/BROMIUM/g' -e 's/^.*panaceas.*/HOME/g' )
-CFLAGS=-g -Wall -D${WHERE} -Wno-unused
+CPPFLAGS=-D${WHERE}
+CFLAGS=-g -Wall -Wno-unused
all: kmd
%.o: %.c
- $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
+ $(CC) ${CPPFLAGS} $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $^
OBJS=${CSRCS:%.c=%.o}
@@ -26,7 +27,7 @@ clean:
protos:
echo > prototypes.h
- cproto -e -v ${CSRCS} >> prototypes.tmp
+ cproto -e -v ${CPPFLAGS} ${CSRCS} >> prototypes.tmp
mv -f prototypes.tmp prototypes.h
install: kmd