First commit
This commit is contained in:
commit
b7a1213f91
29 changed files with 1312 additions and 0 deletions
23
Spec/GNUmakefile
Normal file
23
Spec/GNUmakefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue