This is not needed to build modules
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-10 08:44:09 +02:00
parent fc4b17434e
commit bfbe97255c
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ RCFLAGS = -O3 -s
LDFLAGS = LDFLAGS =
# Destination directory # Destination directory
DESTDIR ?= $(realpath .)/binary DESTDIR ?= $(realpath .)/binary/
############################################## ##############################################
### Do not modify anything below this line ### ### Do not modify anything below this line ###
@ -142,7 +142,7 @@ $(MODULE):
$(eval MODULE_OBJS := $(addprefix $(BUILD_DIR)/,$(MODULE_MAKE))) $(eval MODULE_OBJS := $(addprefix $(BUILD_DIR)/,$(MODULE_MAKE)))
$(eval MODULE_PROG := $(MODULE_DIRS)$(LIBSUFFIX)) $(eval MODULE_PROG := $(MODULE_DIRS)$(LIBSUFFIX))
$(MAKE) $(MODULE_OBJS) $(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): $(SAPI):
$(eval SAPI_DIRS := $@) $(eval SAPI_DIRS := $@)