summaryrefslogtreecommitdiffstats
path: root/ds9/make.include
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-06-26 19:55:43 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-06-26 19:55:43 (GMT)
commit16f24c9410852c9155cc646c43af0ff488630bf6 (patch)
tree6a896293a7899750ea36efe86e7edecaeb3fffdb /ds9/make.include
parentcc331f2250fee5b3aeebe8e527c9bf8efbe60f5d (diff)
downloadblt-16f24c9410852c9155cc646c43af0ff488630bf6.zip
blt-16f24c9410852c9155cc646c43af0ff488630bf6.tar.gz
blt-16f24c9410852c9155cc646c43af0ff488630bf6.tar.bz2
fix make.include
Diffstat (limited to 'ds9/make.include')
-rw-r--r--ds9/make.include7
1 files changed, 4 insertions, 3 deletions
diff --git a/ds9/make.include b/ds9/make.include
index ff5930e..e379bdc 100644
--- a/ds9/make.include
+++ b/ds9/make.include
@@ -1,10 +1,11 @@
#--------------------------parser
+# must do it this way for win
$(prefix)/ds9/library/lex.tcl : $(prefix)/ds9/library/lex.fcl
- $(TCLSH_PROG) $(prefix)/fickle/fickle.tcl -o $@ $?
+ cat $(prefix)/fickle/fickle.tcl | $(TCLSH_PROG) -o $@ $?
$(prefix)/ds9/library/parser.tcl : $(prefix)/ds9/library/parser.tac
- $(TCLSH_PROG) $(prefix)/taccle/taccle.tcl -d -o $@ $?
+ cat $(prefix)/taccle/taccle.tcl | $(TCLSH_PROG) -d -o $@ $?
#--------------------------framework
@@ -77,5 +78,5 @@ $(LIBDIR)/math : $(prefix)/tcllib/modules/math
distclean: clean
-rm -f Makefile config.cache config.log config.status
- -rm -f library/parser.output library/parser.tcl library/parser.tab.tcl
-rm -rf autom4te.cache
+ -rm -f ../library/parser.output ../library/parser.tcl ../library/parser.tab.tcl ../library/lex.tcl