summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-30 10:59:43 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-30 10:59:43 +0000
commit941eab33e9722b26244e7f344311f065eb28ef44 (patch)
tree89f908444a5aa7a6181189535d3f08102efaa670 /Makefile
parentab097f0c0c7cd6d30767fc63d05731197160aeeb (diff)
%u -> %d for indexes. Some lint fixes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f908b128..9dbb50c2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.33 2007-10-26 16:57:32 nicm Exp $
+# $Id: Makefile,v 1.34 2007-10-30 10:59:42 nicm Exp $
.SUFFIXES: .c .o .y .h
.PHONY: clean
@@ -80,6 +80,9 @@ ${PROG}: ${OBJS}
depend:
mkdep ${CFLAGS} ${INCDIRS} ${SRCS:M*.c}
+lint:
+ lint -cehvx ${CFLAGS:M-D*} ${SRCS:M*.c}
+
clean:
rm -f ${CLEANFILES}