First commit
This commit is contained in:
commit
b7a1213f91
29 changed files with 1312 additions and 0 deletions
25
Alt/GNUmakefile
Normal file
25
Alt/GNUmakefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
TARGET = tank.alt
|
||||
|
||||
SOURCE_ALT = Parameters.alt\
|
||||
Valve.alt\
|
||||
ValveVirtual.alt\
|
||||
Tank.alt\
|
||||
System.alt\
|
||||
|
||||
DIFF_ALT =
|
||||
|
||||
all: $(TARGET) $(DIFF_ALT)
|
||||
|
||||
clean:
|
||||
rm -f *~
|
||||
|
||||
cleandir : clean
|
||||
rm -f $(TARGET) $(DIFF_ALT) test.alt
|
||||
|
||||
$(TARGET) : $(SOURCE_ALT)
|
||||
rm -f $(TARGET)
|
||||
for d in $(SOURCE_ALT); do \
|
||||
cat $$d >> $(TARGET);\
|
||||
done
|
||||
|
||||
$(DIFF_ALT) : $(SOURCE_ALT)
|
Loading…
Add table
Add a link
Reference in a new issue