summaryrefslogtreecommitdiffstats
path: root/talloc/rules.mk
blob: 6cee126529c8146d8306cb2d008fda36ee474b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.SUFFIXES: .c .o .3 .3.xml .xml .html

showflags::
	@echo 'talloc will be compiled with flags:'
	@echo '  CFLAGS = $(CFLAGS)'
	@echo '  LIBS = $(LIBS)'

.c.o:
	$(CC) $(PICFLAG) -o $@ -c $< $(CFLAGS)

.3.xml.3:
	-test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<

.xml.html:
	-test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<

distclean::
	rm -f *~ */*~