summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-10 19:45:20 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-10 19:45:20 +0000
commitefa3e131b5337e6ef3badc7b01ecf6acbea70407 (patch)
tree9708861424d7241d54e773839e56c7f5113f2ad6 /Makefile
parent6aa64f1a93247bcf1d706c9c87dac77037cf35e5 (diff)
Simplify input.c - lose class table and use macros.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 168db18e..faedee11 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.24 2007-10-04 21:21:48 nicm Exp $
+# $Id: Makefile,v 1.25 2007-10-10 19:45:20 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean
@@ -42,7 +42,7 @@ LDFLAGS+= -Wl,-E
CFLAGS+= -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CFLAGS+= -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CFLAGS+= -Wwrite-strings -Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare
-CFLAGS+= -Wundef -Wshadow -Wbad-function-cast -Winline -Wcast-align
+CFLAGS+= -Wundef -Wbad-function-cast -Winline -Wcast-align
PREFIX?= /usr/local
INSTALLBIN= install -g bin -o root -m 555