diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-09-11 23:22:45 +0200 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-09-11 23:22:45 +0200 |
commit | 9f914c252453628999e72018354e95310f10f4a9 (patch) | |
tree | 24078e5fc8531a65231ba55b718317bc9c8589ac /lua/lib | |
parent | a1eb1f41d91572fc0ad4f8805d946c8bdbdb8d2a (diff) | |
download | librpm-tizen-9f914c252453628999e72018354e95310f10f4a9.tar.gz librpm-tizen-9f914c252453628999e72018354e95310f10f4a9.tar.bz2 librpm-tizen-9f914c252453628999e72018354e95310f10f4a9.zip |
Remove (Unused).
Diffstat (limited to 'lua/lib')
-rw-r--r-- | lua/lib/Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lua/lib/Makefile b/lua/lib/Makefile deleted file mode 100644 index 7da14dc49..000000000 --- a/lua/lib/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# makefile for Lua standard library - -LUA= ../.. - -include $(LUA)/config - -# actually only used in liolib.c -EXTRA_DEFS= $(POPEN) - -OBJS= lauxlib.o lbaselib.o ldblib.o liolib.o lmathlib.o ltablib.o lstrlib.o -SRCS= lauxlib.c lbaselib.c ldblib.c liolib.c lmathlib.c ltablib.c lstrlib.c - -T= $(LIB)/liblualib.a - -all: $T - -$T: $(OBJS) - $(AR) $@ $(OBJS) - $(RANLIB) $@ - -clean: - rm -f $(OBJS) $T - -co: - co -q -f -M $(SRCS) - -klean: clean - rm -f $(SRCS) |