mirror of
https://github.com/KeithDHedger/LFSDesktopProject.git
synced 2026-01-13 05:42:05 +00:00
29 lines
489 B
Makefile
29 lines
489 B
Makefile
|
|
SUBDIRS = LFSToolKit/app
|
|
|
|
EXTRA_DIST = lfstk.pc.in
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = lfstk.pc
|
|
DISTCLEANFILES = lfstk.pc
|
|
|
|
.PHONY: docs
|
|
|
|
docs:
|
|
cd docs && $(MAKE)
|
|
|
|
clean-docs:
|
|
rm -r docs/html
|
|
|
|
docs-install:
|
|
$(INSTALL) -d $(DESTDIR)$(docdir)
|
|
cp -rvp docs/html docs/searchdata.xml $(DESTDIR)$(docdir)
|
|
|
|
docs-uninstall:
|
|
rm -rv $(DESTDIR)$(docdir)
|
|
|
|
purge:
|
|
rm $(DESTDIR)${libdir}/liblfstoolkit.*||true
|
|
rm -r $(DESTDIR)${includedir}/lfstk||true
|
|
|
|
#ACLOCAL_AMFLAGS = "-I m4"
|