X-Git-Url: http://git.projectaon.org/?p=project-aon.git;a=blobdiff_plain;f=common%2Fpdf%2Fbuild%2Flw%2FMakefile;fp=common%2Fpdf%2Fbuild%2Flw%2FMakefile;h=7258ee61cf7d99a9b7d60cb9ecbc5336f2405175;hp=0000000000000000000000000000000000000000;hb=f4bdee5083ca9a72713637e1e979aa183e06faea;hpb=97545603aea8298f1eceb604ff65085cc7adfced diff --git a/common/pdf/build/lw/Makefile b/common/pdf/build/lw/Makefile new file mode 100644 index 0000000..7258ee6 --- /dev/null +++ b/common/pdf/build/lw/Makefile @@ -0,0 +1,43 @@ + +# Dirs to build +# LW #1 to #25 (English) +ENGLISH_DIRS := 01fftd 02fotw 03tcok 04tcod 05sots 06tkot 07cd 08tjoh \ + 09tcof 10tdot 11tpot 12tmod 13tplor 14tcok 15tdc 16tlov 17tdoi \ + 18dotd 19wb 20tcon 21votm 22tbos 23mh 24rw 25totw +# Unpublished (english) books: +# 26tfobm 27v 28thos + +# LS #1 to #12 (Spanish) +SPANISH_DIRS := 01hdlo 02fsea 03lcdk 04eam 05eddls 06lpdlc 07meec \ + 08ljdlh 09ecdm 10lmdt 11pdt 12lsdlo +# Unpublished (spanish) books: +# + +DIRS = $(ENGLISH_DIRS) $(SPANISH_DIRS) + +DIRS-install := $(addsuffix -install,$(DIRS)) +DIRS-clean := $(addsuffix -clean,$(DIRS)) +DIRS-distclean := $(addsuffix -distclean,$(DIRS)) + +.SUFFIXES: +.PHONY: install all clean $(DIRS) $(DIRS-install) + +all: $(DIRS) +all-english: $(ENGLISH_DIRS) +all-spanish: $(SPANISH_DIRS) + +install: $(DIRS-install) +clean: $(DIRS-clean) +distclean: $(DIRS-distclean) + +$(DIRS-install): + $(MAKE) -C $(subst -install,,$@) install + +$(DIRS-clean): + $(MAKE) -C $(subst -clean,,$@) clean + +$(DIRS-distclean): + $(MAKE) -C $(subst -distclean,,$@) distclean + +$(DIRS): + $(MAKE) -C $@