initial commit

This commit is contained in:
agroschim
2026-01-31 14:49:09 +01:00
commit 4e4a5e5d15
3 changed files with 30 additions and 0 deletions

13
makemud.sh Executable file
View File

@@ -0,0 +1,13 @@
#! /bin/sh -x
patch -Np0 < configure-implicit-int.patch
# Accept license preemptively
touch src/.accepted
# Force a pre-C23 standard so 'bool' and 'false' are not keywords
export CFLAGS+=" -std=gnu17"
./configure --prefix=/usr
cd src
make