
all: substitute

NEG: NEG.c
	gcc -o $@ $<

substitute: substitute.pas
	fpc @build.cfg $<

substitute-debug: substitute.pas
	fpc @build.cfg $< -dDEBUG -dSEVERAL_FILES

demo: substitute NEG
	xboard -debug -fcp "./substitute NEG" 
