summaryrefslogtreecommitdiffstats
path: root/taccle/examples/Makefile
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2018-06-21 19:52:32 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2018-06-21 19:52:32 (GMT)
commit6919da64f1e15c1b0a350bb318772d05d2efe9d3 (patch)
tree897fdaa3d7fd78f72fcb2b6d83889973fd4a6d2b /taccle/examples/Makefile
parent67f7b317d8c54c06c71a8f645129b6646de5ab5f (diff)
parent95627403093a9d1683fe4882836a0ca3adfd0a8a (diff)
downloadblt-6919da64f1e15c1b0a350bb318772d05d2efe9d3.zip
blt-6919da64f1e15c1b0a350bb318772d05d2efe9d3.tar.gz
blt-6919da64f1e15c1b0a350bb318772d05d2efe9d3.tar.bz2
Merge commit '95627403093a9d1683fe4882836a0ca3adfd0a8a' as 'taccle'
Diffstat (limited to 'taccle/examples/Makefile')
-rw-r--r--taccle/examples/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/taccle/examples/Makefile b/taccle/examples/Makefile
new file mode 100644
index 0000000..7235aea
--- /dev/null
+++ b/taccle/examples/Makefile
@@ -0,0 +1,17 @@
+# $Id: Makefile,v 1.2 2004/09/29 16:23:28 tang Exp $
+
+TCL=tclsh
+FICKLE=~/fickle/fickle.tcl
+TACCLE=../taccle.tcl
+EXAMPLES=interactive_calculator.tcl simple_calculator.tcl infix_calc.tcl
+
+all: $(EXAMPLES) simple_scanner.tcl
+
+%.tcl: %.fcl
+ $(TCL) $(FICKLE) $<
+
+%.tcl: %.tac
+ $(TCL) $(TACCLE) -d -v -w $<
+
+clean:
+ -rm -f *tcl *output