author | František Kučera <franta-hg@frantovo.cz> |
Tue, 05 Dec 2023 22:55:25 +0100 | |
branch | v_0 |
changeset 20 | 0899e966993e |
parent 19 | 262828ae9682 |
child 24 | 98d033d3ef7c |
permissions | -rw-r--r-- |
0 | 1 |
# ShaderShark |
2 |
# Copyright © 2023 František Kučera (Frantovo.cz, GlobalCode.info) |
|
3 |
# |
|
4 |
# This program is free software: you can redistribute it and/or modify |
|
5 |
# it under the terms of the GNU General Public License as published by |
|
6 |
# the Free Software Foundation, version 3 of the License. |
|
7 |
# |
|
8 |
# This program is distributed in the hope that it will be useful, |
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 |
# GNU General Public License for more details. |
|
12 |
# |
|
13 |
# You should have received a copy of the GNU General Public License |
|
14 |
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 |
||
16 |
all: build/shader-shark |
|
17 |
||
18 |
.PHONY: all clean run |
|
19 |
||
20 |
clean: |
|
21 |
rm -rf build |
|
22 |
||
11
0aeedc35ebed
use default texture and shaders from the $SHADER_SHARK_DATA_DIR directory, if not configured as command line arguments
František Kučera <franta-hg@frantovo.cz>
parents:
7
diff
changeset
|
23 |
run: build/shader-shark |
0aeedc35ebed
use default texture and shaders from the $SHADER_SHARK_DATA_DIR directory, if not configured as command line arguments
František Kučera <franta-hg@frantovo.cz>
parents:
7
diff
changeset
|
24 |
SHADER_SHARK_DATA_DIR=. $(<) |
0 | 25 |
|
26 |
build: |
|
27 |
mkdir -p $(@) |
|
28 |
||
7
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
29 |
SRC= \ |
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
30 |
Shark.cpp \ |
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
31 |
shader-shark.cpp \ |
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
32 |
ImageLoader.cpp \ |
19 | 33 |
Texture.cpp \ |
7
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
34 |
Shader.cpp \ |
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
35 |
Program.cpp \ |
e6065118326f
monitor texture and shader file writes using inotify: print file events
František Kučera <franta-hg@frantovo.cz>
parents:
5
diff
changeset
|
36 |
FileMonitor.cpp |
0 | 37 |
|
38 |
build/shader-shark: $(SRC) build *.h |
|
39 |
$(CXX) -std=c++20 -g -o $(@) $(SRC) $$(pkg-config --cflags --libs \ |
|
1
fb65455622b9
load textures from PNG, JPEG etc. files using ImageMagick
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
40 |
epoxy x11 glu glm Magick++) |