GITLAB
wasteland
/
server
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
7cbc0876848d870e1df2e79a3d4f6bb2fcf68baa
Authored by
zhengshouren
2018-09-28 14:40:46 +0800
0 parents
add skynet 1.1.0
Showing
3 changed files
with
18 additions
and
0 deletions
Show diff stats
.gitmodules
Makefile
skynet
Inline
Side-by-side
.gitmodules
0 → 100644
Wrap text
Show/Hide comments
View file @
7cbc087
1
+++ a/.gitmodules
...
...
@@ -0,0 +1,3 @@
1
+[submodule "skynet"]
2
+ path = skynet
3
+ url = git@120.26.43.151:common/skynet.git
...
...
Makefile
0 → 100644
Wrap text
Show/Hide comments
View file @
7cbc087
1
+++ a/Makefile
...
...
@@ -0,0 +1,14 @@
1
+.PHONY: all skynet clean
2
+
3
+PLAT ?= macosx
4
+
5
+all : skynet
6
+
7
+skynet :
8
+ cd skynet && $(MAKE) $(PLAT)
9
+
10
+clean :
11
+ cd skynet && $(MAKE) clean
12
+
13
+cleanall :
14
+ cd skynet && $(MAKE) cleanall
...
...
skynet
@
99bfdd1307c
1
+++ a/skynet
...
...
@@ -0,0 +1 @@
1
+Subproject commit 99bfdd1307c6d1747124b4d614ca55d6830f34aa
...
...