Description:
Add Makefile.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -0,0 +1,31 | |||||
|
|
1 | |||
|
|
2 | |||
|
|
3 | CORE_SOLUTION = ./isometric-park-fna-core.sln | ||
|
|
4 | FRAMEWORK_SOLUTION = ./isometric-park-fna.sln | ||
|
|
5 | |||
|
|
6 | |||
|
|
7 | core-debug: | ||
|
|
8 | dotnet build ${CORE_SOLUTION} -f netcoreapp3.1 | ||
|
|
9 | |||
|
|
10 | |||
|
|
11 | framework-release: | ||
|
|
12 | msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Release | ||
|
|
13 | |||
|
|
14 | |||
|
|
15 | clean-obj: | ||
|
|
16 | rm -r isometric-park-fna/obj/ | ||
|
|
17 | |||
|
|
18 | framework-debug: clean-obj | ||
|
|
19 | msbuild -restore:True ${FRAMEWORK_SOLUTION} -p:Configuration=Debug | ||
|
|
20 | |||
|
|
21 | #CONVENIENCE | ||
|
|
22 | |||
|
|
23 | # Just using framework for releases since I know it works for now: | ||
|
|
24 | release: framework-release | ||
|
|
25 | |||
|
|
26 | run: framework-debug | ||
|
|
27 | cd isometric-park-fna/bin/Debug/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="/Users/alys/repos/isometric-park-fna/fnalibs/osx" mono isometric-park-fna.exe | ||
|
|
28 | |||
|
|
29 | |||
|
|
30 | |||
|
|
31 |
You need to be logged in to leave comments.
Login now