view vd_watchdog/Makefile @ 13:e4e6727f530f tip

To work with bootstrap code's configuration on the timer
author Thinker K.F. Li <thinker@branda.to>
date Wed, 09 Jul 2008 13:05:43 +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