@@ -3,7 +3,7 @@ INCLUDEDIR ?= /usr/include
TARGETS = check_binder client manager service_provider
LDLIBS += -lselinux -lrt
-DEPS = binder_common.c binder_common.h
+DEPS = binder_common.c
ifeq ($(shell test -e $(INCLUDEDIR)/linux/android/binderfs.h && echo true),true)
CFLAGS += -DHAVE_BINDERFS
@@ -11,7 +11,7 @@ TARGETS += check_binderfs
endif
ifneq (,$(findstring -DHAVE_BPF,$(CFLAGS)))
- DEPS += ../bpf/bpf_common.c ../bpf/bpf_common.h
+ DEPS += ../bpf/bpf_common.c
LDLIBS += -lbpf
endif
@@ -1,5 +1,5 @@
TARGETS = bpf_test
-DEPS = bpf_common.c bpf_common.h
+DEPS = bpf_common.c
LDLIBS += -lselinux -lbpf
# export so that BPF_ENABLED entries get built correctly on local build
@@ -1,7 +1,7 @@
TARGETS = client server
ifneq (,$(findstring -DHAVE_BPF,$(CFLAGS)))
- DEPS = ../bpf/bpf_common.c ../bpf/bpf_common.h
+ DEPS = ../bpf/bpf_common.c
LDLIBS += -lbpf
endif
@@ -1,8 +1,6 @@
TARGETS = keyctl keyctl_relabel keyring_service request_keys
LDLIBS += -lselinux -lkeyutils
-$(TARGETS): keys_common.h
-
all: $(TARGETS)
clean:
@@ -1,5 +1,5 @@
TARGETS = tun_tap tun_relabel
-DEPS = tun_common.c tun_common.h
+DEPS = tun_common.c
LDLIBS += -lselinux
all: $(TARGETS)