dbus: Clean dbus build files on wpa_supplicant 'make clean'
In addition, add preliminary build rules for build libwpadbus.a.
This commit is contained in:
parent
926ab7e6a0
commit
eb3b34ceea
3 changed files with 76 additions and 0 deletions
|
@ -1336,6 +1336,7 @@ tests: test-eap_sim_common
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(MAKE) -C ../src clean
|
$(MAKE) -C ../src clean
|
||||||
|
$(MAKE) -C dbus clean
|
||||||
rm -f core *~ *.o *.d eap_*.so $(ALL) $(WINALL) eapol_test preauth_test
|
rm -f core *~ *.o *.d eap_*.so $(ALL) $(WINALL) eapol_test preauth_test
|
||||||
rm -f wpa_priv
|
rm -f wpa_priv
|
||||||
|
|
||||||
|
|
1
wpa_supplicant/dbus/.gitignore
vendored
Normal file
1
wpa_supplicant/dbus/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
libwpadbus.a
|
74
wpa_supplicant/dbus/Makefile
Normal file
74
wpa_supplicant/dbus/Makefile
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
all: libwpadbus.a
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *~ *.o *.d
|
||||||
|
rm -f libwpadbus.a
|
||||||
|
|
||||||
|
install:
|
||||||
|
@echo Nothing to be made.
|
||||||
|
|
||||||
|
ifndef CC
|
||||||
|
CC=gcc
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifndef CFLAGS
|
||||||
|
CFLAGS = -MMD -O2 -Wall -g
|
||||||
|
endif
|
||||||
|
|
||||||
|
CFLAGS += -I../../src -I../../src/utils
|
||||||
|
|
||||||
|
|
||||||
|
Q=@
|
||||||
|
E=echo
|
||||||
|
ifeq ($(V), 1)
|
||||||
|
Q=
|
||||||
|
E=true
|
||||||
|
endif
|
||||||
|
|
||||||
|
%.o: %.c
|
||||||
|
$(Q)$(CC) -c -o $@ $(CFLAGS) $<
|
||||||
|
@$(E) " CC " $<
|
||||||
|
|
||||||
|
|
||||||
|
#CFLAGS += -DCONFIG_WPS
|
||||||
|
CFLAGS += -DCONFIG_CTRL_IFACE_DBUS_NEW
|
||||||
|
CFLAGS += -DCONFIG_CTRL_IFACE_DBUS
|
||||||
|
|
||||||
|
ifndef DBUS_LIBS
|
||||||
|
DBUS_LIBS := $(shell pkg-config --libs dbus-1)
|
||||||
|
endif
|
||||||
|
ifndef DBUS_INCLUDE
|
||||||
|
DBUS_INCLUDE := $(shell pkg-config --cflags dbus-1)
|
||||||
|
endif
|
||||||
|
ifdef CONFIG_CTRL_IFACE_DBUS_INTRO
|
||||||
|
CFLAGS += -DCONFIG_CTRL_IFACE_DBUS_INTRO
|
||||||
|
DBUS_INCLUDE += $(shell xml2-config --cflags)
|
||||||
|
DBUS_LIBS += $(shell xml2-config --libs)
|
||||||
|
endif
|
||||||
|
|
||||||
|
dbus_version=$(subst ., ,$(shell pkg-config --modversion dbus-1))
|
||||||
|
DBUS_VERSION_MAJOR=$(word 1,$(dbus_version))
|
||||||
|
DBUS_VERSION_MINOR=$(word 2,$(dbus_version))
|
||||||
|
ifeq ($(DBUS_VERSION_MAJOR),)
|
||||||
|
DBUS_VERSION_MAJOR=0
|
||||||
|
endif
|
||||||
|
ifeq ($(DBUS_VERSION_MINOR),)
|
||||||
|
DBUS_VERSION_MINOR=0
|
||||||
|
endif
|
||||||
|
DBUS_INCLUDE += -DDBUS_VERSION_MAJOR=$(DBUS_VERSION_MAJOR)
|
||||||
|
DBUS_INCLUDE += -DDBUS_VERSION_MINOR=$(DBUS_VERSION_MINOR)
|
||||||
|
|
||||||
|
CFLAGS += $(DBUS_INCLUDE)
|
||||||
|
|
||||||
|
LIB_OBJS= \
|
||||||
|
ctrl_iface_dbus.o \
|
||||||
|
ctrl_iface_dbus_handlers.o \
|
||||||
|
ctrl_iface_dbus_new.o \
|
||||||
|
ctrl_iface_dbus_new_handlers.o \
|
||||||
|
ctrl_iface_dbus_new_helpers.o \
|
||||||
|
dbus_dict_helpers.o
|
||||||
|
|
||||||
|
libwpadbus.a: $(LIB_OBJS)
|
||||||
|
$(AR) crT $@ $?
|
||||||
|
|
||||||
|
-include $(OBJS:%.o=%.d)
|
Loading…
Reference in a new issue