retroforth/source/Makefile
crc 9d4392ace7 rre now just two files, update Makefiles
FossilOrigin-Name: 4ca1b3e6bb573454d50d2a384cf1bf889f40bdb439f64c575c02cf32a2fc32b6
2017-10-20 01:11:18 +00:00

17 lines
239 B
Makefile

LIBS = -lm
OPTS = -O3
all: objects link finish
objects:
$(CC) $(OPTS) -c rre.c -o rre.o
$(CC) $(OPTS) -c repl.c -o repl.o
link:
$(CC) $(LIBS) rre.o -o rre
$(CC) $(LIBS) repl.o -o repl
finish:
mv rre ../bin
mv repl ../bin
rm *.o