This website works better with JavaScript.
首頁
說明
登入
lolengine
/
lol
镜像来自
https://github.com/lolengine/lol
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Move C++ code in an src/ subdirectory.
legacy
Sam Hocevar
sam
15 年之前
父節點
d4834f0160
當前提交
246b4ff176
共有
4 個文件被更改
,包括
14 次插入
和
3 次删除
分割檢視
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
查看文件
@@ -0,0 +1 @@
src/test-map
+ 4
- 3
Makefile
查看文件
@@ -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
查看文件
@@ -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
查看文件
Write
Preview
Loading…
取消
儲存