summaryrefslogtreecommitdiff
path: root/clients/lib/old/Makefile
diff options
context:
space:
mode:
authorLua Team <team@lua.org>1997-07-01 12:00:00 +0000
committerrepogen <>1997-07-01 12:00:00 +0000
commit4f8c5d0f284e1f4da717aea5008915f185cd2e05 (patch)
tree5671acf8a2cacf0c0524ce96d22959590a3aa5af /clients/lib/old/Makefile
parent47a298a24ad3a8202440051de5938618502302a0 (diff)
downloadlua-github-3.0.tar.gz
Lua 3.03.0
Diffstat (limited to 'clients/lib/old/Makefile')
-rw-r--r--clients/lib/old/Makefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/clients/lib/old/Makefile b/clients/lib/old/Makefile
deleted file mode 100644
index b9668617..00000000
--- a/clients/lib/old/Makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-# makefile for lualib
-
-LUA= ../../..
-
-include $(LUA)/config
-
-EXTRA_DEFS= $(POPEN) $(NOSTRERROR)
-
-OBJS= iolib.o mathlib.o strlib.o
-SRCS= iolib.c mathlib.c strlib.c
-
-SLIB= $(LIB)/liboldlualib.a
-
-# dynamic libraries only work for SunOs
-DLIB= $(LIB)/liboldlualib.so.$(VERSION)
-
-all: $(SLIB)
-
-dynamic: $(DLIB)
-
-$(SLIB): $(OBJS)
- ar rcu $@ $(OBJS)
- $(RANLIB) $(SLIB)
-
-$(DLIB): $(OBJS)
- ld -o $@ $(OBJS)
-
-clean:
- rm -f $(OBJS) $(SLIB) $(DLIB)
-
-co:
- co -f -M -rv2_4 $(SRCS)
-
-klean: clean
- rm -f $(SRCS)