#
# Makefile for cron daemon
#
#


CC=$(CROSS)gcc

all: crond 

crond : cron.o cron-parent.o
	$(CC) -s -o $@ $(LDFLAGS)  $^ 

install: all
	cp -a crond ../../target/usr/sbin
clean:
	rm -f *~ crond *.o
