summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: d8f61f56d9ae5d82d9b023b292b0573883320440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
SUBDIRS = XFS_Filesystem_Structure XFS_Labs XFS_User_Guide

html:  $(addsuffix -html,$(SUBDIRS))
html-single:  $(addsuffix -html-single,$(SUBDIRS))
pdf:  $(addsuffix -pdf,$(SUBDIRS))

clean: $(addsuffix -clean,$(SUBDIRS))

%-html:
	$(MAKE) -C $* publican-html

%-html-single:
	$(MAKE) -C $* publican-html-single

%-pdf:
	$(MAKE) -C $* publican-pdf

%-clean:
	$(MAKE) -C $* clean