summaryrefslogtreecommitdiff
path: root/src/luac/Makefile
diff options
context:
space:
mode:
authorLua Team <team@lua.org>1999-07-08 12:00:00 +0000
committerrepogen <>1999-07-08 12:00:00 +0000
commitafb67002d94ef22c14741910ba83da262a6e9338 (patch)
treeb51ab3502813f590a4b115997f6fe41da43b6586 /src/luac/Makefile
parent377347776f1f3d820f92151f70bec667f96d5e6b (diff)
downloadlua-github-3.2.tar.gz
Lua 3.23.2
Diffstat (limited to 'src/luac/Makefile')
-rw-r--r--src/luac/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/luac/Makefile b/src/luac/Makefile
index 195b5cc4..e2950e60 100644
--- a/src/luac/Makefile
+++ b/src/luac/Makefile
@@ -5,8 +5,8 @@ LUA= ../..
include $(LUA)/config
INCS= -I$(INC) $(EXTRA_INCS) -I..
-OBJS= dump.o luac.o opcode.o opt.o print.o stubs.o
-SRCS= dump.c luac.c opcode.c opt.c print.c stubs.c luac.h opcode.h
+OBJS= dump.o luac.o opcode.o opt.o print.o stubs.o test.o
+SRCS= dump.c luac.c opcode.c opt.c print.c stubs.c test.c luac.h opcode.h
T= $(BIN)/luac
@@ -16,7 +16,7 @@ $T: $(OBJS) $(LIB)/liblua.a
$(CC) -o $@ $(OBJS) -L$(LIB) -llua
$(LIB)/liblua.a:
- cd ..; make
+ cd ..; $(MAKE)
clean:
rm -f $(OBJS) $T