CC=clang
CFLAGS=-lX11
DEPS =
OBJ = main.o Display/x11.o 

%.o: %.c $(DEPS)
	$(CC) -c -o $@ $< $(CFLAGS)

player: $(OBJ)
	$(CC) -o $@ $^ $(CFLAGS)
