Rev 1157 | Rev 1173 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# rebootd
PROG= rebootd
SRCS= rebootd.c
$(PROG): $(SRCS)
cc -pedantic-errors -Wall -o $(PROG) $(SRCS)
all: clean $(PROG)
pedantic:
lint -x -s -p -n -h -e -c -b -aa $(SRCS) | grep -E '^$(PROG)'
cc -Wnested-externs -Wredundant-decls -Wmissing-declarations \
-Wmissing-prototypes -Wstrict-prototypes -Waggregate-return \
-Wwrite-strings -Wcast-align -Wcast-qual -Wpointer-arith \
-Wshadow -pedantic-errors -Wall -o $(PROG) $(SRCS)
clean:
rm -f $(PROG)