File: Makefile

package info (click to toggle)
advi 2.0.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,728 kB
  • sloc: ml: 16,318; makefile: 1,223; ansic: 1,020; sh: 262; perl: 55; tcl: 10
file content (38 lines) | stat: -rw-r--r-- 659 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
CONFIG = ../_build/default/src/Makefile.config

advi_latexdir = $(advi_texdir)/tex/latex

SOURCES = \
  advi-annot.sty \
  advi-graphicx.sty \
  advi-slides.sty \
  advi.hva \
  advi.sty \
  argv.sty \
  bubble.sty \
  pgfsys-dvips.def \
  superpose.sty \
  xwindows-colors.sty \
  caml.eps \
  bar.eps \
  advilogo.eps

OLDSOURCES =  advi.pro

all: 

$(CONFIG):
	(cd ../src && dune build Makefile.config)

include $(CONFIG)

clean:  

install: $(SOURCES) 
	install -d $(advi_latexdir)
	install  $(SOURCES) $(advi_latexdir)

uninstall: 
	for i in $(SOURCES); do rm -vf $(advi_latexdir)/$$i; done
	if test -d $(advi_latexdir); then rmdir $(advi_latexdir); fi