Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1159 → Rev 1157

/rebootd/trunk/Makefile
1,15 → 1,13
# rebootd
PROG= rebootdaemon
SRCS= rebootdaemon.c
 
PROG= rebootd
SRCS= rebootd.c
 
$(PROG): $(SRCS)
rebootdaemon: $(SRCS)
cc -pedantic-errors -Wall -o $(PROG) $(SRCS)
 
all: clean $(PROG)
all: clean rebootdaemon
 
pedantic:
lint -x -s -p -n -h -e -c -b -aa $(SRCS) | grep -E '^$(PROG)'
lint -x -s -p -n -h -e -c -b -aa $(SRCS) | grep -E '^rebootdaemon.c'
cc -Wnested-externs -Wredundant-decls -Wmissing-declarations \
-Wmissing-prototypes -Wstrict-prototypes -Waggregate-return \
-Wwrite-strings -Wcast-align -Wcast-qual -Wpointer-arith \