diff options
| author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-30 10:59:43 +0000 |
|---|---|---|
| committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-30 10:59:43 +0000 |
| commit | 941eab33e9722b26244e7f344311f065eb28ef44 (patch) | |
| tree | 89f908444a5aa7a6181189535d3f08102efaa670 /Makefile | |
| parent | ab097f0c0c7cd6d30767fc63d05731197160aeeb (diff) | |
| download | rtmux-941eab33e9722b26244e7f344311f065eb28ef44.tar.gz rtmux-941eab33e9722b26244e7f344311f065eb28ef44.tar.bz2 rtmux-941eab33e9722b26244e7f344311f065eb28ef44.zip | |
%u -> %d for indexes. Some lint fixes.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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} |