Changeset 18 for trunk/src/Makefile
- Timestamp:
- Jun 28, 2010, 12:25:25 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile
r17 r18 1 2 SRC = test-map.cpp video.cpp 1 3 2 4 all: test-map 3 5 4 test-map: test-map.cpp 5 g++ -Wall -O3 $^ -o $@ `pkg-config --cflags --libs sdl gl SDL_image` 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` 6 11 7 12 clean:
Note: See TracChangeset
for help on using the changeset viewer.