File: Makefile

package info (click to toggle)
xtrkcad 20060529-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,200 kB
  • ctags: 7,866
  • sloc: ansic: 74,430; makefile: 1,127; sh: 298
file content (35 lines) | stat: -rw-r--r-- 517 bytes parent folder | download | duplicates (3)
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
EXAMPLES = \
	katoxing.xtc \
	mr03.xtc \
	ntrak4.xtc \
	ntrak6.xtc \
	ntrak8.xtc \
	spagw1.xtc \
	spagw2.xtc \
	spagw3.xtc \
	spagw4.xtc \
	spagw5.xtc \
	cascade.xtc \
	timesavr.xtc \
	Control-Panels.xtc

SRCS = $(EXAMPLES) Makefile

tar:
	tar cvf xtclib.tar $(SRCS)

tag:
	if [ "$(TAG)"x = "x" ] ; then echo define TAG ; else rcs -N$(TAG):HEAD $(SRCS) ; fi

fetch:
	if [ "$(TAG)"x != "x" ] ; then TAG=-r$(TAG) ; fi ;\
	co $$TAG  $(SRCS)

src:
	@echo $(SRCS)

rcssrc:
	@echo $(SRCS)

examplefiles:
	@echo $(EXAMPLES)