OBJS = sc_talk.o notify.o message.o whisperd.o

.c.o:	
	$(CC) $(CFLAGS) $(INCLUDE) $< 

all: whisperd

whisperd:	$(OBJS) 
	$(LD) $(LDFLAGS) $(OBJS) $(LIBS) -o $(WHISPERD)

clean:	
	-rm -f *.o $(WHISPERD) core
