SWITCHES= -w -mc -N -Z -O -G -f-

pdsort.exe:	pdsort.obj merge.obj isdev.obj queue.obj quicker.obj makefile
	tcc $(SWITCHES) pdsort.obj merge.obj isdev.obj queue.obj quicker.obj

pdsort.obj:	pdsort.c queue.h makefile
	tcc -c $(SWITCHES) pdsort

merge.obj:	merge.c queue.h makefile
	tcc -c $(SWITCHES) merge

isdev.obj:	isdev.c makefile
	tcc -c $(SWITCHES) isdev

queue.obj:	queue.c queue.h makefile
	tcc -c $(SWITCHES) queue

quicker.obj:	quicker.c makefile
	tcc -c $(SWITCHES) quicker
