File: Makefile

package info (click to toggle)
saods9 8.6%2Brepack-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 23,220 kB
  • sloc: tcl: 78,253; cpp: 71,015; ansic: 3,955; xml: 1,555; sh: 968; makefile: 183; perl: 68
file content (20 lines) | stat: -rw-r--r-- 364 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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