Files
CodeObject/space/src-lua/Makefile
2025-05-08 02:23:11 +09:00

13 lines
170 B
Makefile

CC = luac
SRC_DIR = ./src
TARGET = main.lua
BUILD_DIR = ../../build
build:
${CC} -o ${BUILD_DIR}/lua.luac ${SRC_DIR}/${TARGET}
run: build
lua ${BUILD_DIR}/lua.luac