File: Makefile

package info (click to toggle)
pdftohtml 0.36-11sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,876 kB
  • ctags: 3,931
  • sloc: cpp: 43,304; sh: 818; ansic: 778; makefile: 258
file content (30 lines) | stat: -rw-r--r-- 467 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
SHELL = /bin/sh

prefix = /usr/local
exec_prefix = ${prefix}
srcdir = .
installer = /usr/bin/install


EXE = 

all:
	cd goo; $(MAKE)
	cd xpdf; $(MAKE) 
	cd src; $(MAKE)
	cd src; mv pdftohtml ../pdftohtml

clean:
	rm -f pdftohtml
	cd goo; $(MAKE) clean
	cd xpdf; $(MAKE) clean
	cd src; $(MAKE) clean

distdepend:
	rm -f pdftohtml
	cd goo; $(MAKE) distdepend
	cd xpdf; $(MAKE) distdepend

install:
	${installer} -g root -o root pdftohtml ${DESTDIR}/usr/bin/pdftohtml