mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
9d171bd937
Currently all what's needed for single file libcacard/vcard_emul_nss.c (libnss cflags) and hw/usb/ccid-card-emulated.c (libcacard includes) together with the libs is added to global QEMU_CFLAGS and libs_softmmu. Use the cflags only where really used (for two mentioned files), and libs only where needed. While at it, rename variables to better reflect reality: libcacard_* is really nss_*. This needs a bit more tweaking: $(NSS_LIBS) should not contain $glib_libs (ditto for _cflags). But in order to fix it, some more preparations should be made first. So add a FIXME comment. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
50 lines
1.8 KiB
Makefile
50 lines
1.8 KiB
Makefile
libcacard_includedir=$(includedir)/cacard
|
|
|
|
TOOLS += vscclient$(EXESUF)
|
|
|
|
# objects linked into a shared library, built with libtool with -fPIC if required
|
|
libcacard-obj-y = $(stub-obj-y) $(libcacard-y)
|
|
libcacard-obj-y += util/osdep.o util/cutils.o util/qemu-timer-common.o
|
|
libcacard-obj-y += util/error.o util/qemu-error.o
|
|
libcacard-obj-$(CONFIG_WIN32) += util/oslib-win32.o util/qemu-thread-win32.o
|
|
libcacard-obj-$(CONFIG_POSIX) += util/oslib-posix.o util/qemu-thread-posix.o
|
|
libcacard-obj-y += $(filter trace/%, $(util-obj-y))
|
|
|
|
libcacard-lobj-y=$(patsubst %.o,%.lo,$(libcacard-obj-y))
|
|
|
|
# libtool will build the .o files, too
|
|
$(libcacard-obj-y): | $(libcacard-lobj-y)
|
|
|
|
all: libcacard.la libcacard.pc
|
|
|
|
vscclient$(EXESUF): libcacard/vscclient.o libcacard.la
|
|
$(call LINK,$^)
|
|
|
|
#########################################################################
|
|
# Rules for building libcacard standalone library
|
|
|
|
libcacard.la: LDFLAGS += -rpath $(libdir) -no-undefined \
|
|
-export-syms $(SRC_PATH)/libcacard/libcacard.syms
|
|
libcacard.la: $(libcacard-lobj-y)
|
|
$(call LINK,$^)
|
|
|
|
libcacard.pc: $(SRC_PATH)/libcacard/libcacard.pc.in
|
|
$(call quiet-command,sed -e 's|@LIBDIR@|$(libdir)|' \
|
|
-e 's|@INCLUDEDIR@|$(libcacard_includedir)|' \
|
|
-e 's|@VERSION@|$(shell cat $(SRC_PATH)/VERSION)|' \
|
|
-e 's|@PREFIX@|$(prefix)|' $< > libcacard.pc,\
|
|
" GEN $@")
|
|
|
|
.PHONY: install-libcacard
|
|
|
|
install: install-libcacard
|
|
install-libcacard: libcacard.pc libcacard.la
|
|
$(INSTALL_DIR) "$(DESTDIR)$(libdir)"
|
|
$(INSTALL_DIR) "$(DESTDIR)$(libdir)/pkgconfig"
|
|
$(INSTALL_DIR) "$(DESTDIR)$(libcacard_includedir)"
|
|
$(INSTALL_LIB) libcacard.la "$(DESTDIR)$(libdir)"
|
|
$(INSTALL_DATA) libcacard.pc "$(DESTDIR)$(libdir)/pkgconfig"
|
|
for inc in $(SRC_PATH)/libcacard/*.h; do \
|
|
$(INSTALL_DATA) $$inc "$(DESTDIR)$(libcacard_includedir)"; \
|
|
done
|