File: Makefile

package info (click to toggle)
saods9 8.2%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 28,436 kB
  • sloc: tcl: 247,588; cpp: 69,307; ansic: 3,983; xml: 1,375; sh: 1,312; makefile: 183; perl: 68
file content (17 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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