Add Alepha and dynamically generate much of the view.

This commit is contained in:
2026-06-04 17:13:29 -04:00
parent 80a3742fc5
commit 28fb94a674
2 changed files with 113 additions and 78 deletions
+20 -2
View File
@@ -1,2 +1,20 @@
all: calx
CXXFLAGS+= -std=c++26
CXXFLAGS+= -std=c++26 -Oz
CPPFLAGS+= -I .
LDFLAGS+= -Wl,-rpath,'$$ORIGIN/'
PROGRAMS=calx
all: ${PROGRAMS}
${PROGRAMS}: libalepha.so
libalepha.so:
mkdir -p build_alepha
cd build_alepha; cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../Alepha; cp ../Alepha/helpful-things/Makefile .; make
cp build_alepha/libalepha.so .
clean:
rm -f ${PROGRAMS}
rm -fR build_alepha libalepha.so