1all: libwpadbus.a
2
3clean:
4	rm -f *~ *.o *.d *.gcno *.gcda *.gcov
5	rm -f libwpadbus.a
6
7install:
8	@echo Nothing to be made.
9
10ifndef CC
11CC=gcc
12endif
13
14ifndef CFLAGS
15CFLAGS = -MMD -O2 -Wall -g
16endif
17
18PKG_CONFIG ?= pkg-config
19CFLAGS += -I../../src -I../../src/utils
20
21
22Q=@
23E=echo
24ifeq ($(V), 1)
25Q=
26E=true
27endif
28
29%.o: %.c
30	$(Q)$(CC) -c -o $@ $(CFLAGS) $<
31	@$(E) "  CC " $<
32
33
34ifdef CONFIG_WPS
35CFLAGS += -DCONFIG_WPS
36endif
37
38CFLAGS += -DCONFIG_CTRL_IFACE_DBUS_NEW
39
40ifndef DBUS_LIBS
41DBUS_LIBS := $(shell $(PKG_CONFIG) --libs dbus-1)
42endif
43ifndef DBUS_INCLUDE
44DBUS_INCLUDE := $(shell $(PKG_CONFIG) --cflags dbus-1)
45endif
46ifdef CONFIG_CTRL_IFACE_DBUS_INTRO
47CFLAGS += -DCONFIG_CTRL_IFACE_DBUS_INTRO
48DBUS_INCLUDE += $(shell xml2-config --cflags)
49DBUS_LIBS += $(shell xml2-config --libs)
50endif
51
52CFLAGS += $(DBUS_INCLUDE)
53
54LIB_OBJS= \
55	dbus_common.o \
56	dbus_new.o \
57	dbus_new_handlers.o \
58	dbus_new_helpers.o \
59	dbus_new_introspect.o \
60	dbus_dict_helpers.o
61
62ifdef CONFIG_WPS
63LIB_OBJS += dbus_new_handlers_wps.o
64endif
65
66libwpadbus.a: $(LIB_OBJS)
67	$(AR) crT $@ $?
68
69-include $(OBJS:%.o=%.d)
70