Skip to content

Commit

Permalink
Added DEBUG_LOADER targers
Browse files Browse the repository at this point in the history
  • Loading branch information
Marisa-Chan committed Apr 19, 2013
1 parent a4719e5 commit 6f498d6
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Engine/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,25 @@ WINOBJ = \
linux_zgi: $(OBJS)
$(CXX) -Wno-write-strings -DGAME_ZGI -O3 -Os -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/
$(CXX) -Wno-write-strings -DWIDESCREEN -DGAME_ZGI -O3 -Os -o $(TARGET)_wide $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/

linux_zgi_trace: $(OBJS)
$(CXX) -Wno-write-strings -DTRACE -DGAME_ZGI -O3 -Os -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/
$(CXX) -Wno-write-strings -DTRACE -DGAME_ZGI -g -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/

linux_zgi_trace_path: $(OBJS)
$(CXX) -Wno-write-strings -DDEBUG_LOADER -DTRACE -DGAME_ZGI -g -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/

linux_znem: $(OBJS)
$(CXX) -Wno-write-strings -DGAME_NEMESIS -O3 -Os -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/

linux_znem_trace: $(OBJS)
$(CXX) -Wno-write-strings -DTRACE -DGAME_NEMESIS -O3 -Os -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/
$(CXX) -Wno-write-strings -DTRACE -DGAME_NEMESIS -g -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/

linux_znem_trace_path: $(OBJS)
$(CXX) -Wno-write-strings -DDEBUG_LOADER -DTRACE -DGAME_NEMESIS -g -o $(TARGET) $(OBJS) $(LIBS) -I /usr/include/ -I /usr/include/SDL/

win32_zgi_trace: $(OBJS) $(WINOBJ)
$(CXX_WIN) -Wno-write-strings -DTRACE -DGAME_ZGI -O3 -Os -o $(TARGET).exe $(OBJS) $(WINOBJ) $(LIBS_WIN) -I $(MINGW)/include/ -I $(MINGW)/include/SDL/

win32_zgi: $(OBJS) $(WINOBJ)
$(CXX_WIN) -Wno-write-strings -DGAME_ZGI -O3 -Os -o $(TARGET).exe $(OBJS) $(WINOBJ) $(LIBS_WIN) -I $(MINGW)/include/ -I $(MINGW)/include/SDL/
$(CXX_WIN) -Wno-write-strings -DWIDESCREEN -DGAME_ZGI -O3 -Os -o $(TARGET)_wide.exe $(OBJS) $(WINOBJ) $(LIBS_WIN) -I $(MINGW)/include/ -I $(MINGW)/include/SDL/
Expand Down

0 comments on commit 6f498d6

Please sign in to comment.