fragattacks/src/p2p/Makefile
Johannes Berg f4b3d14e97 build: Make a common library build
Derive the library name from the directory name, and let each
library Makefile only declare the objects that are needed.

This reduces duplicate code for the ar call. While at it, also
pretty-print that call.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
2020-10-12 20:20:20 +03:00

24 lines
319 B
Makefile

include ../lib.rules
install:
@echo Nothing to be made.
CFLAGS += -DCONFIG_WIFI_DISPLAY
CFLAGS += -DCONFIG_WPS_NFC
LIB_OBJS= \
p2p_build.o \
p2p.o \
p2p_dev_disc.o \
p2p_go_neg.o \
p2p_group.o \
p2p_invitation.o \
p2p_parse.o \
p2p_pd.o \
p2p_sd.o \
p2p_utils.o
_OBJS_VAR := LIB_OBJS
include ../objs.mk