560a3528307b4a5be668a44f5d21e3634d5944dc
[project/luci.git] / libs / fastindex / Makefile
1 include ../../build/config.mk
2 include ../../build/gccconfig.mk
3
4 %.o: %.c
5         $(COMPILE) $(LUA_CFLAGS) $(FPIC) -c -o $@ $< 
6
7 compile: src/fastindex.o
8         mkdir -p dist/usr/lib/lua/luci
9         $(LINK) $(SHLIB_FLAGS) -o dist/usr/lib/lua/luci/fastindex.so src/fastindex.o $(LUA_SHLIBS)
10
11 clean:
12         rm -f src/*.o