|
@@ -43,14 +43,14 @@ CXXFLAGS += $(FLAGS) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Derive object files from sources and place them before user-defined objects |
|
|
# Derive object files from sources and place them before user-defined objects |
|
|
OBJECTS := $(patsubst %, build/%.o, $(SOURCES)) $(OBJECTS) |
|
|
|
|
|
|
|
|
SOURCE_OBJECTS := $(patsubst %, build/%.o, $(SOURCES)) |
|
|
DEPS := $(patsubst %, build/%.d, $(SOURCES)) |
|
|
DEPS := $(patsubst %, build/%.d, $(SOURCES)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Final targets |
|
|
# Final targets |
|
|
|
|
|
|
|
|
$(TARGET): $(RESOURCES) $(OBJECTS) |
|
|
|
|
|
$(CXX) -o $@ $(OBJECTS) $(LDFLAGS) |
|
|
|
|
|
|
|
|
$(TARGET): $(RESOURCES) $(OBJECTS) $(SOURCE_OBJECTS) |
|
|
|
|
|
$(CXX) -o $@ $(SOURCE_OBJECTS) $(OBJECTS) $(LDFLAGS) |
|
|
|
|
|
|
|
|
-include $(DEPS) |
|
|
-include $(DEPS) |
|
|
|
|
|
|
|
|