summaryrefslogtreecommitdiff
path: root/src/lua/Makefile
diff options
context:
space:
mode:
authorLua Team <team@lua.org>2004-12-30 12:00:00 +0000
committerrepogen <>2004-12-30 12:00:00 +0000
commite2493a40ee611d5a718fd2a81fe67e24c04c91a0 (patch)
tree0dca96133b3cd52d262dfa2592ad076fc0ea7852 /src/lua/Makefile
parent226f7859b5392b6680b7e703f9cc7f7f101fd365 (diff)
downloadlua-github-5.1-work4.tar.gz
Lua 5.1-work45.1-work4
Diffstat (limited to 'src/lua/Makefile')
-rw-r--r--src/lua/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/lua/Makefile b/src/lua/Makefile
deleted file mode 100644
index aa52832f..00000000
--- a/src/lua/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# makefile for Lua interpreter
-
-LUA= ../..
-
-include $(LUA)/config
-
-EXTRA_DEFS= $(USERCONF)
-OBJS= lua.o
-SRCS= lua.c
-
-T= $(BIN)/lua
-
-all: $T
-
-$T: $(OBJS) $(LIB)/liblua.a $(LIB)/liblualib.a
- $(CC) -o $@ $(MYLDFLAGS) $(OBJS) -L$(LIB) -llua -llualib $(EXTRA_LIBS) $(DLLIB)
-
-$(LIB)/liblua.a:
- cd ..; $(MAKE)
-
-$(LIB)/liblualib.a:
- cd ../lib; $(MAKE)
-
-clean:
- rm -f $(OBJS) $T
-
-co:
- co -q -f -M $(SRCS)
-
-klean: clean
- rm -f $(SRCS)