d064bbd43265f4af121f5d0bfa81066eed4eacfe
[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$(LUCI_INSTALLDIR)
9         $(LINK) $(SHLIB_FLAGS) -o dist$(LUCI_INSTALLDIR)/fastindex.so src/fastindex.o $(LUA_SHLIBS)
10
11 clean:
12         rm -f src/*.o