From 088bc4628bbf6bdc005adf8054549e3798306f74 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 2 Jun 2008 15:35:22 +0000 Subject: add the fastindex module --- libs/fastindex/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libs/fastindex/Makefile (limited to 'libs/fastindex/Makefile') diff --git a/libs/fastindex/Makefile b/libs/fastindex/Makefile new file mode 100644 index 000000000..560a35283 --- /dev/null +++ b/libs/fastindex/Makefile @@ -0,0 +1,12 @@ +include ../../build/config.mk +include ../../build/gccconfig.mk + +%.o: %.c + $(COMPILE) $(LUA_CFLAGS) $(FPIC) -c -o $@ $< + +compile: src/fastindex.o + mkdir -p dist/usr/lib/lua/luci + $(LINK) $(SHLIB_FLAGS) -o dist/usr/lib/lua/luci/fastindex.so src/fastindex.o $(LUA_SHLIBS) + +clean: + rm -f src/*.o -- cgit v1.2.3