File: Makefile

package info (click to toggle)
configlet 1.8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,044 kB
  • ctags: 211
  • sloc: python: 1,417; xml: 709; makefile: 139; sh: 44
file content (29 lines) | stat: -rw-r--r-- 648 bytes parent folder | download
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
# $Progeny: Makefile,v 1.9 2002/01/18 06:19:43 dsp Exp $

doctools=../doctools

SGML_FILES=	\
		update-configlets.sgml \
		configlet-capplet.sgml \
		test-configlets.sgml \
		configlets-druid.sgml \
		configlets-text.sgml

all: configlet-capplet.1 update-configlets.1 test-configlets.1 \
	configlets-druid.1 configlets-text.1

validate:
	$(call validate_sgml,update-configlets.sgml)
	$(call validate_sgml,configlet-capplet.sgml)
	$(call validate_sgml,test-configlets.sgml)
	$(call validate_sgml,configlets-druid.sgml)

clean:
# Dummy target

maintainer-clean:
	rm -f *.1

.PHONY: all validate clean maintainer-clean

include ${doctools}/docbook.mk