xref: /qemu/contrib/plugins/Makefile (revision b49f4755)
1# -*- Mode: makefile -*-
2#
3# This Makefile example is fairly independent from the main makefile
4# so users can take and adapt it for their build. We only really
5# include config-host.mak so we don't have to repeat probing for
6# programs that the main configure has already done for us.
7#
8
9include config-host.mak
10
11TOP_SRC_PATH = $(SRC_PATH)/../..
12
13VPATH += $(SRC_PATH)
14
15NAMES :=
16NAMES += execlog
17NAMES += hotblocks
18NAMES += hotpages
19NAMES += howvec
20
21# The lockstep example communicates using unix sockets,
22# and can't be easily made to work on windows.
23ifneq ($(CONFIG_WIN32),y)
24NAMES += lockstep
25endif
26
27NAMES += hwprofile
28NAMES += cache
29NAMES += drcov
30
31ifeq ($(CONFIG_WIN32),y)
32SO_SUFFIX := .dll
33LDLIBS += $(shell $(PKG_CONFIG) --libs glib-2.0)
34else
35SO_SUFFIX := .so
36endif
37
38SONAMES := $(addsuffix $(SO_SUFFIX),$(addprefix lib,$(NAMES)))
39
40# The main QEMU uses Glib extensively so it's perfectly fine to use it
41# in plugins (which many example do).
42PLUGIN_CFLAGS := $(shell $(PKG_CONFIG) --cflags glib-2.0)
43PLUGIN_CFLAGS += -fPIC -Wall
44PLUGIN_CFLAGS += -I$(TOP_SRC_PATH)/include/qemu
45
46all: $(SONAMES)
47
48%.o: %.c
49	$(CC) $(CFLAGS) $(PLUGIN_CFLAGS) -c -o $@ $<
50
51ifeq ($(CONFIG_WIN32),y)
52lib%$(SO_SUFFIX): %.o win32_linker.o ../../plugins/libqemu_plugin_api.a
53	$(CC) -shared -o $@ $^ $(LDLIBS)
54else ifeq ($(CONFIG_DARWIN),y)
55lib%$(SO_SUFFIX): %.o
56	$(CC) -bundle -Wl,-undefined,dynamic_lookup -o $@ $^ $(LDLIBS)
57else
58lib%$(SO_SUFFIX): %.o
59	$(CC) -shared -o $@ $^ $(LDLIBS)
60endif
61
62
63clean:
64	rm -f *.o *$(SO_SUFFIX) *.d
65	rm -Rf .libs
66
67.PHONY: all clean
68.SECONDARY:
69