First commit

This commit is contained in:
Yorick Barbanneau 2023-03-01 21:40:15 +01:00
commit b7a1213f91
29 changed files with 1312 additions and 0 deletions

23
Spec/GNUmakefile Normal file
View file

@ -0,0 +1,23 @@
TARGET = tank.spe
SOURCE_SPE = System.spe
DIFF_SPE =
all: $(TARGET) $(DIFF_SPE)
clean:
rm -f *~
cleandir : clean
rm -f $(TARGET) $(DIFF_SPE) test.spe
$(TARGET) : $(SOURCE_SPE)
rm -f $(TARGET)
for d in $(SOURCE_SPE); do \
cat $$d >> $(TARGET);\
done
$(DIFF_SPE) : $(SOURCE_SPE)