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

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

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

clean:
	rm -f src/*.o