Makefile should create all required directories

This commit is contained in:
bel2125 2017-07-18 22:14:54 +02:00
parent 3e8bc6e784
commit 698303af84
4 changed files with 4 additions and 0 deletions

View File

@ -320,3 +320,4 @@ indent:
astyle --suffix=none --style=linux --indent=spaces=4 --lineend=linux include/*.h src/*.c src/*.cpp src/*.inl examples/*/*.c examples/*/*.cpp
.PHONY: all help build install clean lib so

View File

@ -57,4 +57,5 @@ DUKTAPE_OBJECTS = $(DUKTAPE_SOURCES:.c=.o)
OBJECTS += $(DUKTAPE_OBJECTS)
CFLAGS += $(DUKTAPE_CFLAGS)
SOURCE_DIRS = $(DUKTAPE_DIR)
BUILD_DIRS += $(BUILD_DIR)/$(DUKTAPE_DIR)

View File

@ -108,6 +108,7 @@ LUA_OBJECTS = $(LUA_SOURCES:.c=.o)
OBJECTS += $(LUA_OBJECTS)
CFLAGS += $(LUA_CFLAGS)
SOURCE_DIRS = $(LUA_DIR)
BUILD_DIRS += $(BUILD_DIR)/$(LUA_DIR)
ifneq ($(WITH_LUA_VERSION), 501)

View File

@ -20,3 +20,4 @@ ifeq ($(TARGET_OS),)
endif
endif
endif