From bfbe97255c59c8278ba69e329d8fc3ec96be3e49 Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 10 Aug 2018 08:44:09 +0200 Subject: [PATCH] This is not needed to build modules --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a44d017..5ae8658 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ RCFLAGS = -O3 -s LDFLAGS = # Destination directory -DESTDIR ?= $(realpath .)/binary +DESTDIR ?= $(realpath .)/binary/ ############################################## ### Do not modify anything below this line ### @@ -142,7 +142,7 @@ $(MODULE): $(eval MODULE_OBJS := $(addprefix $(BUILD_DIR)/,$(MODULE_MAKE))) $(eval MODULE_PROG := $(MODULE_DIRS)$(LIBSUFFIX)) $(MAKE) $(MODULE_OBJS) - $(CC) -o $(BUILD_DIR)/$(MODULE_PROG) $(LDFLAGS) $(LIBFLAGS) -shared $(MODULE_OBJS) + $(CC) -o $(BUILD_DIR)/$(MODULE_PROG) $(LDFLAGS) -shared $(MODULE_OBJS) $(SAPI): $(eval SAPI_DIRS := $@)