# UNIX makefile for mini-threads demo program.

OBJS=caller.c threads.o

main: $(OBJS)
	cc -g $(OBJS) -o $@

threads.o: threads.s
	nasm -g -f elf threads.s -o threads.o

clean:
	rm *.o *.obj *.exe threads.o main

