author | František Kučera <franta-hg@frantovo.cz> |
Fri, 12 Jan 2024 00:45:40 +0100 | |
branch | v_0 |
changeset 40 | df1376ef9f6d |
parent 37 | fb673fa1cad5 |
permissions | -rw-r--r-- |
29
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
1 |
# OHP3D |
0 | 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 |
||
29
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
16 |
all: build/ohp3d |
0 | 17 |
|
18 |
.PHONY: all clean run |
|
19 |
||
20 |
clean: |
|
21 |
rm -rf build |
|
32
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
22 |
rm -f documents/*.aux |
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
23 |
rm -f documents/*.log |
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
24 |
rm -f documents/*.nav |
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
25 |
rm -f documents/*.out |
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
26 |
rm -f documents/*.snm |
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
27 |
rm -f documents/*.toc |
0 | 28 |
|
29
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
29 |
run: build/ohp3d |
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
30 |
OHP3D_DATA_DIR=. $(<) |
0 | 31 |
|
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
|
32 |
SRC= \ |
29
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
33 |
OHP3D.cpp \ |
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
34 |
ohp3d.cpp \ |
19 | 35 |
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
|
36 |
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
|
37 |
Program.cpp \ |
24
98d033d3ef7c
xattr: XAttrs class that read/write/list extended attributes
František Kučera <franta-hg@frantovo.cz>
parents:
19
diff
changeset
|
38 |
XAttrs.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
|
39 |
FileMonitor.cpp |
0 | 40 |
|
29
dc3c102e1264
derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents:
24
diff
changeset
|
41 |
build/ohp3d: $(SRC) *.h |
24
98d033d3ef7c
xattr: XAttrs class that read/write/list extended attributes
František Kučera <franta-hg@frantovo.cz>
parents:
19
diff
changeset
|
42 |
mkdir -p build |
0 | 43 |
$(CXX) -std=c++20 -g -o $(@) $(SRC) $$(pkg-config --cflags --libs \ |
30
02972f051744
import PDF loading code from the OHP3D private prototype
František Kučera <franta-hg@frantovo.cz>
parents:
29
diff
changeset
|
44 |
epoxy x11 glu glm poppler-cpp) |
32
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
45 |
|
711d3d781143
default PDF document
František Kučera <franta-hg@frantovo.cz>
parents:
30
diff
changeset
|
46 |
documents/ohp3d.pdf: documents/ohp3d.tex |
37
fb673fa1cad5
documentation: mouse and keyboard controls
František Kučera <franta-hg@frantovo.cz>
parents:
32
diff
changeset
|
47 |
cd documents; pdflatex $(notdir $(<)); pdflatex $(notdir $(<)) |