projet_altarica/Spec/GNUmakefile
2023-03-01 21:40:15 +01:00

23 lines
295 B
Makefile

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)