Description:
Parameterize make run.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -3,6 +3,8 | |||
|
3 | 3 | CORE_SOLUTION = ./isometric-park-fna-core.sln |
|
4 | 4 | FRAMEWORK_SOLUTION = ./isometric-park-fna.sln |
|
5 | 5 | |
|
6 | DEFAULT_RUN = framework-debug | |
|
7 | ||
|
6 | 8 | |
|
7 | 9 | core-debug: |
|
8 | 10 | dotnet build ${CORE_SOLUTION} -f netcoreapp3.1 |
@@ -35,6 +37,8 | |||
|
35 | 37 | run-framework-release: |
|
36 | 38 | cd isometric-park-fna/bin/Release/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../fnalibs/osx" mono isometric-park-fna.exe |
|
37 | 39 | |
|
40 | run-framework-debug: | |
|
41 | cd isometric-park-fna/bin/Debug/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../fnalibs/osx" mono isometric-park-fna.exe | |
|
38 | 42 | |
|
39 | 43 | # lint: |
|
40 | 44 | # yamllint -d relaxed isometric-park-fna/Content/news_items.yaml |
@@ -44,9 +48,5 | |||
|
44 | 48 | # Just using framework for releases since I know it works for now: |
|
45 | 49 | release: framework-release |
|
46 | 50 | |
|
47 | run: framework-debug | |
|
48 | cd isometric-park-fna/bin/Debug/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../fnalibs/osx" mono isometric-park-fna.exe | |
|
49 | ||
|
50 | ||
|
51 | ||
|
52 | ||
|
51 | run: $(DEFAULT_RUN) run-$(DEFAULT_RUN) | |
|
52 | # cd isometric-park-fna/bin/Debug/; LD_LIBRARY_PATH="../../../fnalibs/lib64" DYLD_LIBRARY_PATH="../../../fnalibs/osx" mono isometric-park-fna.exe |
You need to be logged in to leave comments.
Login now