CC=gcc
CFLAGS=-Wall
all: utils.o

utils.o: utils.c utils.h selectors.h defs.h

clean:
	rm -f *.o
