Blame view
tools/sctk-2.4.10/src/slatreport/makefile.in
620 Bytes
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# ********************************************************** # Makefile for slatreport Directory # ********************************************************** MAKE=make PREFIX=../.. bindir=$(PREFIX)/bin all: slatreport.pl slatreport.pl: chmod +x slatreport.pl config: @echo -n " Checking gnuplot... " @if [ "`which gnuplot | egrep '^/'`" = "" ] ; then \ echo "not found"; \ else \ echo `which gnuplot`; \ fi check: all @echo "Testing slatreport.pl" ./slatTest.pl @echo " slatreport.pl tests successfully completed" install: all cp slatreport.pl $(bindir) clean: distclean: clean rm -r *~ makefile |