Moved demotified text functions
[grace.git] / examples / Makefile
blob56e5c1b7039607a191b8fb2ee8fc4a0a82aa0f0d
1 #####################################################
2 # Makefile for examples of Grace #
3 #####################################################
4 # You should not change anything here. #
5 #####################################################
7 TOP=..
9 include $(TOP)/Make.conf
11 DOTEST = dotest$(BAT)
13 EXAMPLES = times.agr \
14 au.agr manygraphs.agr terr.agr tinset.agr \
15 axes.agr tlog.agr log2.agr logit.agr reciprocal.agr \
16 bar.agr explain.agr \
17 fills.agr props.agr \
18 chartebar.agr charts.agr \
19 hilo.agr test2.agr arrows.agr txyr.agr \
20 co2.agr stackedb.agr tfonts.agr typeset.agr xyz.agr \
21 symslines.agr polar.agr \
22 motif.agr spectrum.agr pie.agr txttrans.agr boxplot.agr vmap.agr \
23 xysize.agr xycolor.agr \
24 diode.xgr
26 all : dummy
28 clean : dummy
30 distclean : dummy
32 devclean : dummy
34 install : $(EXAMPLES)
35 $(MKINSTALLDIRS) $(DESTDIR)$(GRACE_HOME)/examples
36 for i in $(EXAMPLES); do $(INSTALL_DATA) $$i $(DESTDIR)$(GRACE_HOME)/examples; done
38 links : dummy
40 tests : $(EXAMPLES) $(DOTEST)
41 ./$(DOTEST)
43 check : dummy
45 dummy :