TARGET=chomocon

all: $(TARGET)

chomocon: chomocon.c kbhit.o
	$(CC) $(CFLAGS) -lpthread -lm -o $@ $^

clean:
	$(RM) *~ *.o $(TARGET)
