all:	lcdd
OPT= -DDEBUG		#uncomment to disable daemon capability
OPT1= -DTRACEON		#uncomment to see trace messages 
CC= cc $(OPT) $(OPT1)
UOBJ= 

lcdd: lcdd.c
	$(CC) -o lcdd lcdd.c $(UOBJ) 
clean:
	rm core lcdd 
