File: Makefile

package info (click to toggle)
dstooltk 2.0-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,520 kB
  • ctags: 3,169
  • sloc: ansic: 27,185; tcl: 4,770; makefile: 588; sh: 81; csh: 7
file content (37 lines) | stat: -rw-r--r-- 952 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Makefile
#

          TOP = ..
       CONFIG = $(TOP)/config
  CURRENT_DIR = tcl

include $(CONFIG)/Makefile.defs

   MKINDEX = mkindex.tcl
  TCL_SRCS = app_init.tcl pm.tcl save.tcl load.tcl utils.tcl my_app_init.tcl
   TK_SRCS = app_init.tk utils.tk windows.tk \
		cmd.tk selected.tk function.tk defaults.tk \
		help.tk version.tk \
		save.tk load.tk twoD.tk oneD.tk \
		orbits.tk prop.tk multiple.tk fixed.tk \
		browser.tk periodic.tk geomview.tk \
		parser.tk ccode.tk threeD.tk \
                var.tk print.tk snap.tk html.tk dscolor.tk scroll.tk \
		filesl.tk continuation.tk contstate.tk contcolors.tk
#		 widget_util.tcl \

   CLEAN = $(MKINDEX)
   CLEAN_ALL =  tclIndex

OTHER_SRCS = $(TCL_SRCS) $(TK_SRCS) dstool.xbm darrow.xbm uarrow.xbm

all:: tclIndex

tclIndex: $(MKINDEX) $(TCL_SRCS) $(TK_SRCS)
	$(TCLSH) $(MKINDEX)

$(MKINDEX): Makefile
	echo "auto_mkindex . $(TCL_SRCS) $(TK_SRCS)" > $(MKINDEX)

include $(CONFIG)/Makefile.rules