File: Makefile

package info (click to toggle)
grace6 5.99.1%2Bdev4-5.1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 10,508 kB
  • ctags: 13,269
  • sloc: ansic: 103,384; sh: 5,026; yacc: 617; makefile: 577; lex: 253; fortran: 56
file content (43 lines) | stat: -rw-r--r-- 1,046 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
36
37
38
39
40
41
42
43
#####################################################
# Makefile for examples of Grace                    #
#####################################################
# You should not change anything here.              #
#####################################################

TOP=..

include $(TOP)/Make.conf

DOTEST = dotest$(BAT)

EXAMPLES = times.agr \
	au.agr manygraphs.agr terr.agr tinset.agr \
	axes.agr tlog.agr log2.agr logit.agr reciprocal.agr \
	bar.agr explain.agr \
	fills.agr props.agr \
	chartebar.agr charts.agr \
	hilo.agr test2.agr arrows.agr txyr.agr \
	co2.agr stackedb.agr tfonts.agr typeset.agr xyz.agr \
	symslines.agr polar.agr \
	motif.agr spectrum.agr pie.agr txttrans.agr boxplot.agr vmap.agr \
	xysize.agr xycolor.agr \
	diode.xgr

all : dummy

clean : dummy

distclean : dummy

devclean : dummy

install : $(EXAMPLES)
	$(MKINSTALLDIRS) $(DESTDIR)$(GRACE_HOME)/examples
	for i in $(EXAMPLES); do $(INSTALL_DATA) $$i $(DESTDIR)$(GRACE_HOME)/examples; done

links : dummy

tests : $(EXAMPLES) $(DOTEST)
	./$(DOTEST)

dummy :