This commit is contained in:
2024-07-21 22:35:38 -04:00
parent b7b31abc0e
commit 455b329c58
17 changed files with 491 additions and 0 deletions

13
lua/Makefile Normal file
View File

@@ -0,0 +1,13 @@
include ../config.mk
all:
@echo "Run 'make test' to generate a test binary."
@echo "Run 'make clean' to remove the generated binary."
test:
$(CC) -I/usr/include/lua5.2 \
-Wall -llua \
lua.c -o lua.test
clean:
rm lua.test