summaryrefslogtreecommitdiff
path: root/clients/lib/old/Makefile
diff options
context:
space:
mode:
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)