CFLAGS=

all: threads

threads: scheduler.o threads.c
	gcc $(CFLAGS) -o threads threads.c scheduler.o  -lpthread -D_PRINT

scheduler.o: scheduler.h mangling.h scheduler.c
	gcc $(CFLAGS) -c scheduler.c
clean:
	rm -f *~ threads *.o

