CC=gcc 
CFLAGS= -Wall -D_GNU_SOURCE 
LIBS= 

OBJ1=idled.c

idled: $(OBJ1)
	$(CC) $(CFLAGS) -o idled $(OBJ1) $(LIBS)
	strip idled
