Makefile
author František Kučera <franta-hg@frantovo.cz>
Sat, 06 Jan 2024 01:06:28 +0100
branchv_0
changeset 39 2068a992e97e
parent 37 fb673fa1cad5
permissions -rw-r--r--
xattr: tolerate ENOTSUP (behave like there are no attributes when not supported on given FS)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29
dc3c102e1264 derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
     1
# OHP3D
0
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
# Copyright © 2023 František Kučera (Frantovo.cz, GlobalCode.info)
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
#
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
# This program is free software: you can redistribute it and/or modify
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
# it under the terms of the GNU General Public License as published by
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
# the Free Software Foundation, version 3 of the License.
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
#
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
# This program is distributed in the hope that it will be useful,
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
# GNU General Public License for more details.
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
#
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
# You should have received a copy of the GNU General Public License
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
# along with this program. If not, see <http://www.gnu.org/licenses/>.
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
29
dc3c102e1264 derive OHP3D from ShaderShark
František Kučera <franta-hg@frantovo.cz>
parents: 24
diff changeset
    16
all: build/ohp3d
0
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
.PHONY: all clean run
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
clean:
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    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
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    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
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    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
262828ae9682 OOP for Texture
František Kučera <franta-hg@frantovo.cz>
parents: 11
diff changeset
    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
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    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
bb715a82a8f1 project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    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 $(<))