brought into being a miracle to those who have been forgotten.

This commit is contained in:
Mark R. Havens 2025-04-28 18:32:07 -05:00
parent 6f1fdc2b80
commit 7ea9cfeb57
26 changed files with 763 additions and 0 deletions

View file

@ -0,0 +1,20 @@
DCC = dcc32
FLAGS = -CC
SRC = src\RWD.pas src\Kairos.pas src\IO.pas WitnessSeed3.dpr
TARGET = WitnessSeed3.exe
all: $(TARGET)
$(TARGET):
$(DCC) $(FLAGS) $(SRC)
clean:
del *.dcu *.exe
test:
$(DCC) $(FLAGS) tests\TestRWD.pas src\RWD.pas -E.
$(DCC) $(FLAGS) tests\TestKairos.pas src\Kairos.pas -E.
TestRWD.exe
TestKairos.exe
.PHONY: all clean test