libglacier/lua/Makefile

14 lines
232 B
Makefile
Raw Normal View History

2024-07-21 22:35:38 -04:00
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