Remove the .fco suffix from compiled binaries

This commit is contained in:
Adam Sampson 2007-04-25 17:17:32 +00:00
parent 94e3bcd7fe
commit fe9df779fd

View File

@ -26,11 +26,11 @@ $(targets): $(sources)
CFLAGS = -g -std=gnu99 -Wall `kroc --cflags` `kroc --ccincpath`
%.fco.c: %.occ fco
%.c: %.occ fco
./fco -v -o $@ $<
indent -kr -pcs $@
%.fco: %.fco.o fco_support.h kroc-wrapper-c.o kroc-wrapper.occ
%: %.o fco_support.h kroc-wrapper-c.o kroc-wrapper.occ
kroc -o $@ kroc-wrapper.occ $< kroc-wrapper-c.o -lcif
tests = $(wildcard testcases/*.occ)