Mercurial > games > semicongine
annotate Makefile @ 8:1134f41a49e9
add: a few missing changes
author | Sam <sam@basx.dev> |
---|---|
date | Thu, 22 Dec 2022 19:35:54 +0700 |
parents | 4ed9cb098315 |
children | 0660ba9d1930 |
rev | line source |
---|---|
0 | 1 SOURCES := $(shell find src -name '*.nim') |
2
213fdf8d31dd
did: hello world triangle, a bit of code organization
Sam <sam@basx.dev>
parents:
1
diff
changeset
|
2 COMPILE_OPTIONS := --path:src --mm:orc --experimental:strictEffects --threads:on |
213fdf8d31dd
did: hello world triangle, a bit of code organization
Sam <sam@basx.dev>
parents:
1
diff
changeset
|
3 DEBUG_OPTIONS := --debugger:native --checks:on --assertions:on |
213fdf8d31dd
did: hello world triangle, a bit of code organization
Sam <sam@basx.dev>
parents:
1
diff
changeset
|
4 RELEASE_OPTIONS := -d:release --checks:off --assertions:off |
8 | 5 WINDOWS_OPTIONS := -d:mingw |
0 | 6 |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
7 # build |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
8 build/debug/linux/test: ${SOURCES} |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
9 mkdir -p $$( dirname $@ ) |
2
213fdf8d31dd
did: hello world triangle, a bit of code organization
Sam <sam@basx.dev>
parents:
1
diff
changeset
|
10 nim c ${COMPILE_OPTIONS} ${DEBUG_OPTIONS} -o:$@ examples/test.nim |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
11 build/release/linux/test: ${SOURCES} |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
12 mkdir -p $$( dirname $@ ) |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
13 nim c ${COMPILE_OPTIONS} ${RELEASE_OPTIONS} -o:$@ examples/test.nim |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
14 build/debug/windows/test: ${SOURCES} |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
15 mkdir -p $$( dirname $@ ) |
8 | 16 nim c ${COMPILE_OPTIONS} ${DEBUG_OPTIONS} ${WINDOWS_OPTIONS} -o:$@ examples/test.nim |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
17 build/release/windows/test: ${SOURCES} |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
18 mkdir -p $$( dirname $@ ) |
8 | 19 nim c ${COMPILE_OPTIONS} ${RELEASE_OPTIONS} ${WINDOWS_OPTIONS} -o:$@ examples/test.nim |
2
213fdf8d31dd
did: hello world triangle, a bit of code organization
Sam <sam@basx.dev>
parents:
1
diff
changeset
|
20 |
8 | 21 build_all_linux: build/debug/linux/test build/release/linux/test |
22 build_all_windows: build/debug/windows/test build/release/windows/test | |
23 | |
24 build_all: build_all_linux build_all_windows | |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
25 |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
26 # publish |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
27 publish_linux_debug: build/debug/linux/test |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
28 scp $< basx.dev:/var/www/public.basx.dev/joni/linux/debug/ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
29 publish_linux_release: build/release/linux/test |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
30 scp $< basx.dev:/var/www/public.basx.dev/joni/linux/release/ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
31 publish_windows_debug: build/debug/linux/test |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
32 scp $< basx.dev:/var/www/public.basx.dev/joni/windows/debug/ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
33 publish_windows_release: build/release/linux/test |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
34 scp $< basx.dev:/var/www/public.basx.dev/joni/windows/release/ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
35 |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
36 publish_all: publish_linux_debug publish_linux_release publish_windows_debug publish_windows_release |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
37 |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
38 |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
39 # download thirdparty-libraries |
2
213fdf8d31dd
did: hello world triangle, a bit of code organization
Sam <sam@basx.dev>
parents:
1
diff
changeset
|
40 |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
41 thirdparty/lib/glslang/linux_debug: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
42 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
43 wget --directory-prefix=$@ https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-linux-Debug.zip |
8 | 44 unzip glslang-master-linux-Debug.zip |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
45 thirdparty/lib/glslang/linux_release: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
46 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
47 wget --directory-prefix=$@ https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-linux-Release.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
48 unzip glslang-master-linux-Release.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
49 thirdparty/lib/glslang/windows_debug: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
50 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
51 wget --directory-prefix=$@ https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-windows-x64-Debug.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
52 unzip glslang-master-windows-x64-Debug.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
53 thirdparty/lib/glslang/windows_release: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
54 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
55 wget --directory-prefix=$@ https://github.com/KhronosGroup/glslang/releases/download/master-tot/glslang-master-windows-x64-Release.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
56 unzip glslang-master-windows-x64-Release.zip |
3
5d54ef652619
add: skeleton to download thirdparty builds
Sam <sam@basx.dev>
parents:
2
diff
changeset
|
57 |
5
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
58 thirdparty/lib/spirv-tools/linux_debug: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
59 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
60 wget --directory-prefix=$@ https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/linux-gcc-debug/continuous/1899/20221216-081758/install.tgz |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
61 tar -xf $@/install.tgz |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
62 thirdparty/lib/spirv-tools/linux_release: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
63 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
64 wget --directory-prefix=$@ https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/linux-gcc-release/continuous/1889/20221216-081754/install.tgz |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
65 tar -xf $@/install.tgz |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
66 thirdparty/lib/spirv-tools/windows_debug: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
67 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
68 wget --directory-prefix=$@ https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/windows-msvc-2017-debug/continuous/1599/20221216-081803/install.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
69 unzip $@/install.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
70 thirdparty/lib/spirv-tools/windows_release: |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
71 mkdir -p $@ |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
72 wget --directory-prefix=$@ https://storage.googleapis.com/spirv-tools/artifacts/prod/graphics_shader_compiler/spirv-tools/windows-msvc-2017-release/continuous/1885/20221216-081805/install.zip |
4ed9cb098315
add: structure code for crossplatform, add some input handling + bugfixes
Sam <sam@basx.dev>
parents:
3
diff
changeset
|
73 unzip $@/install.zip |