1 ETCDIRS
= styles schema
2 -include local.mk
# optional local customization
4 .NOTPARALLEL
: # always run this make serially
5 .SUFFIXES
: # we don't need default suffix rules
7 $(error This make needs to be started
as a sub-make from the toplevel directory.
)
10 .PHONY
: all install clean cleanall clean-install
16 if
[ ! -d
$(DESTDIR
)$(datadir)/$${dir} ] ; then \
17 $(MKDIR
) $(DESTDIR
)$(datadir)/$${dir} ; \
19 $(CP
) $${dir}/* $(DESTDIR
)$(datadir)/$${dir} ; \
26 clean-install
: $(ETCDIRS
)
28 if
[ -d
$(DESTDIR
)$(datadir)/$${dir} ] ; then \
29 $(RMR
) $(DESTDIR
)$(datadir)/$${dir} ; \