File: Makefile

package info (click to toggle)
tclws 3.5.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 944 kB
  • sloc: tcl: 7,976; makefile: 18
file content (15 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# "make install" to copy all the stuff into a dir where Tcl can find it
#
# $Id$
#

TARGETDIR=/usr/local/lib/tclws

all:
	@echo "Use \"make install\" to deploy files."

install:
	mkdir -p $(TARGETDIR)
	cp -v *.tcl $(TARGETDIR)