project for a (works on my devices) demo

This commit is contained in:
beno
2026-03-13 02:10:13 +01:00
parent 28f62d0b00
commit 425db27acc
26 changed files with 3553 additions and 60 deletions

31
external.mk Normal file
View File

@@ -0,0 +1,31 @@
# export for making the definitions available anywhere during the run
# instead of using imports in each makefile of the project (which would also break since PWD gets reevaluated at each import)
#
# project expects a /project/HEREDIR/ structure ( see ${RESOURCES_LOC} )
#
export PWD=/path/to/the/project/folder/projects/hello_wayland/
export GLOBAL_COMPILE_CONF=-fno-stack-protector
export CFLAGS=-ansi -Wpedantic -Winline -Werror -std=c99
# DIRECTORIES
# BD= from XXX_BUILD/variables.mk
export SD=${PWD}SOURCES/
export RESOURCES_LOC=${PWD}../../resources/
# HEADERS
# should be good even if gathered from around the web ( not build specific )
# includes EGL GLES2 (KHR needed by both)
export GRAPHICS_HEADERS=${RESOURCES_LOC}headers/
WAYLAND_STUFF=${RESOURCES_LOC}sources/wayland-1.22.0/
export WAYLAND_HEADERS=${WAYLAND_STUFF}src/
export WAYLAND_PROTOCOL_HEADERS=${WAYLAND_STUFF}build/src/
export WAYLAND_EGL_HEADERS=${WAYLAND_STUFF}egl/
# INCLUDE
export I_EGL=-I ${GRAPHICS_HEADERS}
export I_WAYLAND=-I ${WAYLAND_HEADERS} -I ${WAYLAND_PROTOCOL_HEADERS} -I ${WAYLAND_EGL_HEADERS}