diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-05-29 20:32:37 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-05-29 20:32:37 (GMT) |
commit | 79b861f6cc5eee9985b08a9b3581580cf02a6965 (patch) | |
tree | 9c55c002e06068f2dc7765168f6fb813a8ec3c9e /fickle/examples/Makefile | |
parent | 76859fcafcbd024cb2ea5a200fbf361e906d1fac (diff) | |
download | blt-79b861f6cc5eee9985b08a9b3581580cf02a6965.zip blt-79b861f6cc5eee9985b08a9b3581580cf02a6965.tar.gz blt-79b861f6cc5eee9985b08a9b3581580cf02a6965.tar.bz2 |
add fickle/taccle
Diffstat (limited to 'fickle/examples/Makefile')
-rwxr-xr-x | fickle/examples/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fickle/examples/Makefile b/fickle/examples/Makefile new file mode 100755 index 0000000..4a40f68 --- /dev/null +++ b/fickle/examples/Makefile @@ -0,0 +1,20 @@ +# $Id: Makefile,v 1.1.1.1 2004/07/23 19:22:41 tang Exp $ + +# A simple Makefile that calls fickle upon the example specification +# files. + +TCL=/usr/bin/tclsh +FICKLE=../fickle.tcl +FCL_EXS=cat.tcl verbs.tcl wc.tcl wc2.tcl cl.tcl csa.tcl tsa.tcl + +all: fcl_exs + +fcl_exs: $(FCL_EXS) + +%.tcl: %.fcl + -$(TCL) $(FICKLE) $< + +clean: + -rm -f $(FCL_EXS:.fcl=.tcl) + +.PHONY: clean |