Skip to content

Commit 26cd760

Browse files
committed
Makefile for ModelTest
1 parent a61f83b commit 26cd760

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,31 +165,31 @@ obj/depencies_$(PLATFORM).mak: $(DEP_ALL)
165165

166166
obj/%_$(PLATFORM).o: %.c
167167
@echo -e " [CC] $<"
168-
@$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
168+
$(CC) $(CFLAGS) $(INCLUDES) -c -o $@ $<
169169

170170
obj/%_rc_$(PLATFORM).o: %.rc
171171
@echo -e " [RC] $<"
172-
@$(WINDRES) -I src -i $< -o $@
172+
$(WINDRES) -I src -i $< -o $@
173173

174174
obj/%_$(PLATFORM).o: %.cpp
175175
@echo -e " [CC] $<"
176-
@$(CXX) $(CPPFLAGS) $(INCLUDES) -c -o $@ $<
176+
$(CXX) $(CPPFLAGS) $(INCLUDES) -c -o $@ $<
177177

178178
# depencies
179179

180180
obj/%_$(PLATFORM).dep: %.c
181181
@echo -en " [DEP] $< \r"
182-
@$(CC) $(CFLAGS) $(INCLUDES) -MM -MF $@ $<
182+
$(CC) $(CFLAGS) $(INCLUDES) -MM -MF $@ $<
183183

184184
obj/%_$(PLATFORM).dep: %.cpp
185185
@echo -en " [DEP] $< \r"
186-
@$(CXX) $(CPPFLAGS) $(INCLUDES) -MM -MF $@ $<
186+
$(CXX) $(CPPFLAGS) $(INCLUDES) -MM -MF $@ $<
187187

188188
# Main target
189189

190190
$(TARGET): $(OBJECTS_ALL)
191191
@echo -e " [LD] $@"
192-
@$(LD) r $(LDFLAGS) $@ $^
192+
$(LD) r $(LDFLAGS) $@ $^
193193
# $(LIBS)
194194

195195

0 commit comments

Comments
 (0)