Add Alepha and dynamically generate much of the view.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user