summaryrefslogtreecommitdiffhomepage
path: root/libs/fastindex/Makefile
blob: d064bbd43265f4af121f5d0bfa81066eed4eacfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
include ../../build/config.mk
include ../../build/gccconfig.mk

%.o: %.c
	$(COMPILE) $(LUA_CFLAGS) $(FPIC) -c -o $@ $< 

compile: src/fastindex.o
	mkdir -p dist$(LUCI_INSTALLDIR)
	$(LINK) $(SHLIB_FLAGS) -o dist$(LUCI_INSTALLDIR)/fastindex.so src/fastindex.o $(LUA_SHLIBS)

clean:
	rm -f src/*.o