This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Move C++ code in an src/ subdirectory.
legacy
Sam Hocevar
sam
14 years ago
parent
d4834f0160
commit
246b4ff176
4 changed files
with
14 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-0
.gitignore
+4
-3
Makefile
+9
-0
src/Makefile
+0
-0
src/test-map.cpp
+ 1
- 0
.gitignore
View File
@@ -0,0 +1 @@
src/test-map
+ 4
- 3
Makefile
View File
@@ -1,6 +1,7 @@
all: test-map
all:
cd src && $(MAKE) all
test-map: test-map.cpp
g++ -Wall -O3 $^ -o $@ `pkg-config --cflags --libs sdl gl SDL_image`
clean:
cd src && $(MAKE) clean
+ 9
- 0
src/Makefile
View File
@@ -0,0 +1,9 @@
all: test-map
test-map: test-map.cpp
g++ -Wall -O3 $^ -o $@ `pkg-config --cflags --libs sdl gl SDL_image`
clean:
rm -f test-map
test-map.cpp → src/test-map.cpp
View File
Write
Preview
Loading…
Cancel
Save