File: Makefile

package info (click to toggle)
dcl 7.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 21,008 kB
  • sloc: fortran: 48,433; f90: 12,803; ansic: 6,513; makefile: 4,738; ruby: 184; sh: 153
file content (38 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (14)
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
#
#       Makefile for grph2
#

include ../../Mkinclude

EPSDIR		= uspack

all: epsfiles grph2.pdf

epsfiles:
	@for i in $(EPSDIR) ; do \
	  cd $$i ; \
	  echo "Making $$i epsfiles" ; \
	  $(MAKE) ; \
	  cd .. ; \
	done

grph2.pdf: grph2.dvi
	$(RM) grph2.pdf
	$(DVI2PDF) grph2.dvi

grph2.dvi: grph2.tex
	$(JLATEX) grph2.tex
	$(JLATEX) grph2.tex

install: $(PSDIR)/grph2.ps

$(PSDIR)/grph2.ps: grph2.ps
	@$(CP) grph2.ps $(PSDIR)/grph2.ps

clean: clean.local clean.dir

clean.local:
	$(RM) *~ *.aux *.dvi *.idx *.log *.toc *.ps *.pdf *.exe *.out

clean.dir:
	$(RM) */*~ */*.aux */*.eps */*.pdf */*.exe */*.out */*.obj