luci/libs/fastindex/Makefile

14 lines
325 B
Makefile
Raw Normal View History

include ../../build/module.mk
2008-06-02 15:35:22 +00:00
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)
2008-06-02 15:35:22 +00:00
clean:
rm -f src/*.o