Skip to content
Snippets Groups Projects
Commit 62d20b2c authored by Thibaut VIARD's avatar Thibaut VIARD
Browse files

Updating validation makefile

parent 30614228
No related branches found
No related tags found
No related merge requests found
......@@ -184,15 +184,15 @@ create_output:
$(addprefix $(OUTPUT_PATH)/,$(C_OBJ)): $(OUTPUT_PATH)/%.o: %.c
@echo Current folder is $(shell cd) - $@ $^
# @"$(CC)" -c $(CFLAGS) $< -o $@
@"$(CC)" -c $(CFLAGS) $< -o $@
# "$(CC)" -v -c $(CFLAGS) $< -o $@
"$(CC)" -c $(CFLAGS) $< -o $@
# "$(CC)" -c $(CFLAGS) $< -o $@
$(addprefix $(OUTPUT_PATH)/,$(CPP_OBJ)): $(OUTPUT_PATH)/%.o: %.cpp
@echo Current folder is $(shell cd) - $@ $^
# @"$(CXX)" -c $(CPPFLAGS) $< -o $@
@"$(CXX)" -c $(CPPFLAGS) $< -o $@
# "$(CXX)" -v -c $(CPPFLAGS) $< -o $@
"$(CXX)" -c $(CPPFLAGS) $< -o $@
# "$(CXX)" -c $(CPPFLAGS) $< -o $@
$(OUTPUT_BIN): $(addprefix $(OUTPUT_PATH)/, $(C_OBJ)) $(addprefix $(OUTPUT_PATH)/, $(CPP_OBJ)) $(addprefix $(OUTPUT_PATH)/, $(A_OBJ))
@"$(CC)" $(LIB_PATH) $(LDFLAGS) -T"$(VARIANT_PATH)/linker_scripts/gcc/flash.ld" -Wl,-Map,$(OUTPUT_PATH)/$@.map -o $(OUTPUT_PATH)/$@.elf $^ $(LIBS)
......@@ -204,6 +204,7 @@ $(OUTPUT_BIN): $(addprefix $(OUTPUT_PATH)/, $(C_OBJ)) $(addprefix $(OUTPUT_PATH)
clean:
@echo ------------------------------------------------------------------------------------
@echo --- Cleaning test files for $(VARIANT)
@$(RM) --version
-@$(RM) $(OUTPUT_PATH) 1>NUL 2>&1
# -@$(RM) $(OUTPUT_PATH)
@echo ------------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment