CC=gcc
CFLAGS = -Wall
all: daemon
daemon: daemon.c
	$(CC) $(CFLAGS) daemon.c -o daemon
clean:
	rm -f daemon
