summaryrefslogtreecommitdiffhomepage
path: root/libs/fastindex/Makefile
blob: 560a3528307b4a5be668a44f5d21e3634d5944dc (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/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