makefile 616 Bytes
#########   Main Makefile for the sctk  #############


####  Creation Date:  Aug 26, 2004
MAKE=make
### Set the installation prefix directory to the default.  (If
### relative paths are used, the are relative to two directories below
### 'src'.)
PREFIX=`cd ../../..; pwd`

all clean distclean:
	(cd core; $(MAKE) $@)
	(cd test; $(MAKE) $@)

install:
	(cd core; $(MAKE) $@)
	(cd test; $(MAKE) $@)

config:
	(cd core; sh config.sh -prefix=${PREFIX})
	(cd test; sh config.sh -prefix=${PREFIX})

checkFast:

check: all checkFast
	(cd core; $(MAKE) $@)
	(cd test; $(MAKE) $@)
	(cd testfiles; perl ascliteTest.pl -s all)