File: Makefile

package info (click to toggle)
hlins 0.39-12
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 380 kB
  • ctags: 178
  • sloc: ml: 1,213; makefile: 166; sh: 51
file content (26 lines) | stat: -rw-r--r-- 677 bytes parent folder | download | duplicates (11)
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
# Makefile for the Hlins documentation
#######################################################################

FILES   = hlins-doc.html changelog LICENSE examples
DOCDIR  = /usr/share/doc/hlins
MANDIR  = /usr/share/man/man1
DESTDIR =

########################################################################

hlins-doc.html:

install: hlins-doc.html
	mkdir -p $(DESTDIR)/$(DOCDIR)
	\cp -r $(FILES) $(DESTDIR)/$(DOCDIR)
	cp hlins.1 $(DESTDIR)/$(MANDIR)

clean:
	(cd examples/hlins-documentation && make clean)
	(cd examples/test-examples && make clean)

distclean:
	-rm -f *~
	(cd examples/hlins-documentation && make distclean)
	(cd examples/test-examples && make distclean)