Last change
on this file since 75 was
75,
checked in by sam, 11 years ago
|
Much better resource allocation and release. Scene manager stub.
|
File size:
297 bytes
|
Line | |
---|
1 | |
---|
2 | SRC = test-map.cpp video.cpp tiler.cpp tileset.cpp scene.cpp layer.cpp map.cpp |
---|
3 | |
---|
4 | all: test-map |
---|
5 | |
---|
6 | test-map: $(SRC:%.cpp=%.o) |
---|
7 | g++ -g -Wall -O3 $^ -o $@ `pkg-config --libs sdl gl SDL_image` |
---|
8 | |
---|
9 | %.o: %.cpp |
---|
10 | g++ -g -Wall -O3 -c $^ -o $@ `pkg-config --cflags sdl gl SDL_image` |
---|
11 | |
---|
12 | clean: |
---|
13 | rm -f *.o test-map |
---|
14 | |
---|
Note: See
TracBrowser
for help on using the repository browser.