1 -include ..
/config-host.mak
2 -include $(SRC_PATH
)/Makefile.objs
3 -include $(SRC_PATH
)/rules.mak
5 libcacard_srcpath
=$(SRC_PATH
)/libcacard
6 libcacard_includedir
=$(includedir)/cacard
8 $(call set-vpath
, $(SRC_PATH
):$(libcacard_srcpath
))
10 # objects linked against normal qemu binaries, not compiled with libtool
11 QEMU_OBJS
=$(addprefix ..
/,$(oslib-obj-y
) qemu-malloc.o qemu-timer-common.o
$(trace-obj-y
))
13 # objects linked into a shared library, built with libtool with -fPIC if required
14 QEMU_OBJS_LIB
=$(addsuffix .lo
,$(basename $(QEMU_OBJS
)))
18 libcacard.lib-y
=$(addsuffix .lo
,$(basename $(libcacard-y
)))
20 vscclient
: $(libcacard-y
) $(QEMU_OBJS
) vscclient.o
21 $(call quiet-command
,$(CC
) $(libcacard_libs
) -lrt
-o
$@
$^
," LINK $@")
24 rm -f
*.o
*/*.o
*.d
*/*.d
*.a
*/*.a
*~
*/*~ vscclient
*.lo .libs
/* *.la
*.
pc
29 #########################################################################
30 # Rules for building libcacard standalone library
34 @echo
"libtool is missing, please install and rerun configure"; exit
1
37 @echo
"libtool is missing, please install and rerun configure"; exit
1
39 libcacard.la
: $(libcacard.lib-y
) $(QEMU_OBJS_LIB
)
40 $(call quiet-command
,libtool
--mode
=link
--quiet
--tag
=CC
$(CC
) $(libcacard_libs
) -lrt
-rpath
$(libdir) -o
$@
$^
," lt LINK $@")
42 libcacard.
pc: $(libcacard_srcpath
)/libcacard.
pc.in
43 sed
-e
's|@LIBDIR@|$(libdir)|' \
44 -e
's|@INCLUDEDIR@|$(libcacard_includedir)|' \
45 -e
's|@VERSION@|$(shell cat $(SRC_PATH)/VERSION)|' \
46 -e
's|@PREFIX@|$(prefix)|' \
47 < $(libcacard_srcpath
)/libcacard.
pc.in
> libcacard.
pc
49 .PHONY
: install-libcacard
51 install-libcacard
: libcacard.
pc libcacard.la vscclient
52 $(INSTALL_DIR
) "$(DESTDIR)$(libdir)"
53 $(INSTALL_DIR
) "$(DESTDIR)$(libdir)/pkgconfig"
54 $(INSTALL_DIR
) "$(DESTDIR)$(libcacard_includedir)"
55 $(INSTALL_DIR
) "$(DESTDIR)$(bindir)"
56 libtool
--mode
=install $(INSTALL_PROG
) vscclient
"$(DESTDIR)$(bindir)"
57 libtool
--mode
=install $(INSTALL_PROG
) libcacard.la
"$(DESTDIR)$(libdir)"
58 libtool
--mode
=install $(INSTALL_PROG
) libcacard.
pc "$(DESTDIR)$(libdir)/pkgconfig"
60 libtool
--mode
=install $(INSTALL_PROG
) $(libcacard_srcpath
)/$$inc "$(DESTDIR)$(libcacard_includedir)"; \