Added makefiles.

This commit is contained in:
Harry Moffat 2006-06-13 16:07:28 +00:00
parent 831ba2466f
commit b3e610fa20
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1 @@
Makefile

View file

@ -0,0 +1,25 @@
#
# $Revision$
# $Author$
# $Date$
#
#
test_issp=@COMPILE_IDEAL_SOLUTIONS@
all:
ifeq ($(test_issp),1)
cd issp; @MAKE@ all
endif
test:
ifeq ($(test_issp),1)
cd issp; @MAKE@ test
endif
clean:
$(RM) *.*~
cd issp; @MAKE@ clean
depends:
ifeq ($(test_issp),1)
cd issp; @MAKE@ depends
endif