LD = gcc TEST_OBJ = stopcont test : $(TEST_OBJ) @echo "done" clean: rm -f *.o rm -f $(TEST_OBJ) stopcont.o : stopcont.c Makefile $(CC) -Wall -c -o stopcont.o -I../include stopcont.c stopcont: stopcont.o $(LD) -o stopcont -lpthread stopcont.o -L../src -lperiodic