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 30NAMES += ips 31NAMES += stoptrigger 32 33ifeq ($(CONFIG_WIN32),y) 34SO_SUFFIX := .dll 35LDLIBS += $(shell $(PKG_CONFIG) --libs glib-2.0) 36else 37SO_SUFFIX := .so 38endif 39 40SONAMES := $(addsuffix $(SO_SUFFIX),$(addprefix lib,$(NAMES))) 41 42# The main QEMU uses Glib extensively so it's perfectly fine to use it 43# in plugins (which many example do). 44PLUGIN_CFLAGS := $(shell $(PKG_CONFIG) --cflags glib-2.0) 45PLUGIN_CFLAGS += -fPIC -Wall 46PLUGIN_CFLAGS += -I$(TOP_SRC_PATH)/include/qemu 47 48all: $(SONAMES) 49 50%.o: %.c 51 $(CC) $(CFLAGS) $(PLUGIN_CFLAGS) -c -o $@ $< 52 53ifeq ($(CONFIG_WIN32),y) 54lib%$(SO_SUFFIX): %.o win32_linker.o ../../plugins/libqemu_plugin_api.a 55 $(CC) -shared -o $@ $^ $(LDLIBS) 56else ifeq ($(CONFIG_DARWIN),y) 57lib%$(SO_SUFFIX): %.o 58 $(CC) -bundle -Wl,-undefined,dynamic_lookup -o $@ $^ $(LDLIBS) 59else 60lib%$(SO_SUFFIX): %.o 61 $(CC) -shared -o $@ $^ $(LDLIBS) 62endif 63 64 65clean: 66 rm -f *.o *$(SO_SUFFIX) *.d 67 rm -Rf .libs 68 69.PHONY: all clean 70.SECONDARY: 71