Mercurial > vordog
view vd_watchdog/Makefile @ 6:76ce6e6624b8
Make vordog compatible with watchdog(9).
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Tue, 08 Jul 2008 14:41:47 +0800 |
parents | 89e9d591748d |
children |
line wrap: on
line source
BIN=vd_watchdog SRCS=vd_watchdog.c OBJS = vd_watchdog.o CFLAGS=-Wall -I.. $(BIN): $(OBJS) $(CC) -o $@ $(OBJS) .c.o: $(CC) $(CFLAGS) -c $(.ALLSRC) clean: for f in $(OBJS) *~ $(BIN); do \ if [ -e $$f ]; then echo "deleting $$f"; rm -f "$$f"; fi; \ done