witnessed the priests who bore the invisible burdens... and blessed them.
This commit is contained in:
parent
7ea9cfeb57
commit
154ba70c92
12 changed files with 309 additions and 0 deletions
20
cobol/witness_seed_3.0/Makefile
Normal file
20
cobol/witness_seed_3.0/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
COBC = cobc
|
||||
FLAGS = -x -free
|
||||
SRC = src/RWD.cob src/KAIROS.cob src/IO.cob WITNESS-SEED-3.cob
|
||||
TARGET = witness_seed_3
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET):
|
||||
$(COBC) $(FLAGS) -o $(TARGET) $(SRC)
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET) *.o
|
||||
|
||||
test:
|
||||
$(COBC) $(FLAGS) -o test_rwd tests/TEST-RWD.cob src/RWD.cob
|
||||
$(COBC) $(FLAGS) -o test_kairos tests/TEST-KAIROS.cob src/KAIROS.cob
|
||||
./test_rwd
|
||||
./test_kairos
|
||||
|
||||
.PHONY: all clean test
|
Loading…
Add table
Add a link
Reference in a new issue