mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2026-02-06 18:31:57 +08:00
27 lines
601 B
Makefile
27 lines
601 B
Makefile
SUBDIRS = src 3rd-party include rtos etc m4 cmake build
|
|
|
|
EXTRA_DIST = \
|
|
GNUmakefile makefile.ng makefile.msvc rules.make \
|
|
Version README INSTALL \
|
|
COPYING LICENSE.POLICY
|
|
minigui.pc.in
|
|
|
|
# The directory where the include files will be installed
|
|
libminiguiincludedir = $(includedir)/minigui
|
|
|
|
# Which header files to install
|
|
libminiguiinclude_HEADERS = mgconfig.h
|
|
|
|
docs:
|
|
doxygen Doxyfile
|
|
|
|
dist-nolicense: dist
|
|
./clean_license.sh $(DIST_ARCHIVES)
|
|
|
|
dist:
|
|
distcheck-nolicense:dist-nolicense distcheck
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = minigui.pc
|
|
|