This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/client/makefile
T
2013-04-29 02:50:58 +10:00

19 lines
429 B
Makefile

CXXFLAGS+=-std=c++11 -DDEBUG
LIB=-lmingw32 -lSDL_net -lSDLmain -lSDL -lwsock32 -liphlpapi
OBJ=base_scene.o scene_manager.o main.o
SRC=test_systems.cpp surface_manager.cpp image.cpp
all: debug
release: $(OBJ)
$(CXX) $(CXXFLAGS) $(SRC) $(OBJ) $(LIB)
debug: $(OBJ)
$(CXX) $(CXXFLAGS) $(SRC) $(OBJ) $(LIB)
clean:
-$(RM) *.o *.a *.exe
unit:
$(CXX) $(CXXFLAGS) unit.cpp surface_manager.cpp image.cpp -lmingw32 -lSDLmain -lSDL