Last change
on this file since 24 was
22,
checked in by sam, 13 years ago
|
Create a tile manager. There are no longer any GL calls in test-map.cpp or
in public headers. Good cleanup.
|
File size:
251 bytes
|
Line | |
---|
1 | |
---|
2 | SRC = test-map.cpp video.cpp tiler.cpp |
---|
3 | |
---|
4 | all: test-map |
---|
5 | |
---|
6 | test-map: $(SRC:%.cpp=%.o) |
---|
7 | g++ -Wall -O3 $^ -o $@ `pkg-config --libs sdl gl SDL_image` |
---|
8 | |
---|
9 | %.o: %.cpp |
---|
10 | 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.