mirror of https://gitee.com/openkylin/cwidget.git
41 lines
694 B
Makefile
41 lines
694 B
Makefile
# Adjust things so that 'make maintainer-clean' restores a pristine
|
|
# checkout.
|
|
MAINTAINERCLEANFILES=ChangeLog configure Makefile.in \
|
|
aclocal.m4 config.h.in config.guess \
|
|
config.sub depcomp INSTALL install-sh \
|
|
ltmain.sh missing
|
|
|
|
if DOXYGEN
|
|
DOXYGENCMD=doxygen
|
|
else
|
|
DOXYGENCMD=
|
|
endif
|
|
|
|
SUBDIRS= po
|
|
|
|
if BUILD_LIBRARY
|
|
SUBDIRS += src
|
|
endif
|
|
|
|
if HAVE_CPPUNIT
|
|
SUBDIRS += tests
|
|
endif
|
|
|
|
SUBDIRS += doc
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = cwidget.pc
|
|
|
|
cwidgetconfigdir = $(pkglibdir)
|
|
cwidgetconfig_HEADERS = cwidget-config.h
|
|
|
|
doc ikiwiki doxygen: Doxyfile
|
|
$(MAKE) -C doc $@
|
|
|
|
.PHONY: doc ikiwiki doxygen all-local
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = config.rpath
|