
I'm taking a page from Dolphin's book, and including copies of each dependency's source code. This combines the ease of use of including pre-built libraries instead of needing to navigate a package manager - as is (or was) the case for MSVC - with the portability of using packages. Granted, this method's more of a jack of all trades, master of none, since it's *less* user-friendly than prebuilt packages (compilation times), and you don't get the per-distro compatibility fixes you'd get from a package manager. You can still use system libs if you want. In fact, it's still the default behaviour: compiling the libs manually is just a fallback. I'll add an option to force-enable this soon, however, since it's a nicer way to produce static MSYS2 builds than the hackish nightmare that I was using before. Not to mention, having my own copy of the sources means I can provide my own fixes and tweaks your package manager may not. For example, I can combine MSYS2's FreeType subpixel rendering with vcpkg's fix for SDL2 exporting its symbols in static builds.
85 lines
1.1 KiB
Makefile
85 lines
1.1 KiB
Makefile
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
if OS_FREEBSD
|
|
pkgconfigdir=$(prefix)/libdata/pkgconfig
|
|
else
|
|
pkgconfigdir=$(libdir)/pkgconfig
|
|
endif
|
|
|
|
if OS_LINUX
|
|
pkgconfig_DATA=pc/hidapi-hidraw.pc pc/hidapi-libusb.pc
|
|
else
|
|
pkgconfig_DATA=pc/hidapi.pc
|
|
endif
|
|
|
|
SUBDIRS=
|
|
|
|
if OS_LINUX
|
|
SUBDIRS += linux libusb
|
|
endif
|
|
|
|
if OS_DARWIN
|
|
SUBDIRS += mac
|
|
endif
|
|
|
|
if OS_IOS
|
|
SUBDIRS += ios
|
|
endif
|
|
|
|
if OS_FREEBSD
|
|
SUBDIRS += libusb
|
|
endif
|
|
|
|
if OS_KFREEBSD
|
|
SUBDIRS += libusb
|
|
endif
|
|
|
|
if OS_WINDOWS
|
|
SUBDIRS += windows
|
|
endif
|
|
|
|
SUBDIRS += hidtest
|
|
|
|
if BUILD_TESTGUI
|
|
SUBDIRS += testgui
|
|
endif
|
|
|
|
EXTRA_DIST = udev doxygen
|
|
|
|
dist_doc_DATA = \
|
|
README.txt \
|
|
AUTHORS.txt \
|
|
LICENSE-bsd.txt \
|
|
LICENSE-gpl3.txt \
|
|
LICENSE-orig.txt \
|
|
LICENSE.txt
|
|
|
|
SCMCLEAN_TARGETS= \
|
|
aclocal.m4 \
|
|
config.guess \
|
|
config.sub \
|
|
configure \
|
|
config.h.in \
|
|
depcomp \
|
|
install-sh \
|
|
ltmain.sh \
|
|
missing \
|
|
mac/Makefile.in \
|
|
testgui/Makefile.in \
|
|
libusb/Makefile.in \
|
|
Makefile.in \
|
|
linux/Makefile.in \
|
|
windows/Makefile.in \
|
|
m4/libtool.m4 \
|
|
m4/lt~obsolete.m4 \
|
|
m4/ltoptions.m4 \
|
|
m4/ltsugar.m4 \
|
|
m4/ltversion.m4
|
|
|
|
SCMCLEAN_DIR_TARGETS = \
|
|
autom4te.cache
|
|
|
|
scm-clean: distclean
|
|
rm -f $(SCMCLEAN_TARGETS)
|
|
rm -Rf $(SCMCLEAN_DIR_TARGETS)
|