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

Removed * which can be considered as shell wildcards

parent ca9316a7
No related branches found
No related tags found
No related merge requests found
......@@ -149,45 +149,45 @@ create_output:
@echo -
@echo -
@echo INCLUDES -------------------------
@echo *$(INCLUDES)
@echo $(INCLUDES)
@echo -
@echo -
@echo C_SRC -------------------------
@echo *$(C_SRC)
@echo $(C_SRC)
@echo -
@echo -
@echo C_OBJ -------------------------
@echo *$(C_OBJ)
@echo $(C_OBJ)
@echo -
@echo -
@echo C_OBJ prefix -------------------------
@echo *$(addprefix $(OUTPUT_PATH)/, $(C_OBJ))
@echo $(addprefix $(OUTPUT_PATH)/, $(C_OBJ))
@echo -
@echo -
@echo CPP_SRC -------------------------
@echo *$(CPP_SRC)
@echo $(CPP_SRC)
@echo -
@echo -
@echo CPP_OBJ -------------------------
@echo *$(CPP_OBJ)
@echo $(CPP_OBJ)
@echo -
@echo -
@echo CPP_OBJ prefix -------------------------
@echo *$(addprefix $(OUTPUT_PATH)/, $(CPP_OBJ))
@echo $(addprefix $(OUTPUT_PATH)/, $(CPP_OBJ))
# @echo A_SRC -------------------------
# @echo *$(A_SRC)
# @echo $(A_SRC)
@echo -------------------------
-@mkdir $(OUTPUT_PATH) 1>NUL 2>&1
@echo ------------------------------------------------------------------------------------
$(addprefix $(OUTPUT_PATH)/,$(C_OBJ)): $(OUTPUT_PATH)/%.o: %.c
@echo *** Current folder is $(shell cd)
@echo Current folder is $(shell cd)
# @"$(CC)" -c $(CFLAGS) $< -o $@
"$(CC)" -v -c $(CFLAGS) $< -o $@
$(addprefix $(OUTPUT_PATH)/,$(CPP_OBJ)): $(OUTPUT_PATH)/%.o: %.cpp
@echo *** Current folder is $(shell cd)
@echo Current folder is $(shell cd)
# @"$(CXX)" -c $(CPPFLAGS) $< -o $@
"$(CXX)" -v -c $(CPPFLAGS) $< -o $@
......
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