File: Makefile

package info (click to toggle)
dstooltk 2.0-3
  • links: PTS
  • area: main
  • in suites: potato, slink
  • size: 2,500 kB
  • ctags: 3,169
  • sloc: ansic: 27,185; tcl: 4,770; makefile: 587; sh: 70; csh: 7
file content (49 lines) | stat: -rw-r--r-- 725 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
38
39
40
41
42
43
44
45
46
47
48
49
#
# Makefile for DsTool
#

          TOP = .
       CONFIG = config
  CURRENT_DIR = .
      TARFILE = dstool_tk.tar

include $(CONFIG)/Makefile.defs

      SUBDIRS = config oogl help src tcl my_dstool

  OTHER_FILES = README INSTALL VERSION bin/dstool_tk bin/dscat \
		site_specific/Prolog.ps changes

      CLEAN = bin/*~
  CLEAN_ALL = lib/*/*.a lib/*/*.o

help: FORCE
	@echo "This is DsTool's top level Makefile.  Please see README file."

World:
	$(MAKE) clean
	$(MAKE) depend
	$(MAKE) all

dist:
	@echo "make dist not yet implemented"

fileslist: FORCE
	$(RM) fileslist
	$(MAKE) listfiles

tarfile:
	$(MAKE) fileslist
	cat fileslist | tar -cvf $(TARFILE) -
	compress $(TARFILE)

include $(CONFIG)/Makefile.rules