mirror of
https://github.com/openwrt/luci.git
synced 2026-06-13 17:11:16 +08:00
a403707b57
Adding $(FPIC) parameter fixes building with CONFIG_USE_LTO enabled. Signed-off-by: Anari Jalakas <anari.jalakas@gmail.com>
27 lines
747 B
Makefile
27 lines
747 B
Makefile
%.o: %.c
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC) -DNDEBUG -c -o $@ $<
|
|
|
|
contrib/lemon: contrib/lemon.c contrib/lempar.c
|
|
cc -o contrib/lemon $<
|
|
|
|
plural_formula.c: plural_formula.y contrib/lemon
|
|
./contrib/lemon -q $<
|
|
|
|
template_lmo.c: plural_formula.c
|
|
|
|
clean:
|
|
rm -f contrib/lemon parser.so plural_formula.c plural_formula.h *.o
|
|
|
|
parser.so: template_parser.o template_utils.o template_lmo.o template_lualib.o plural_formula.o
|
|
$(CC) $(LDFLAGS) $(FPIC) -shared -o $@ $^
|
|
|
|
version.lua:
|
|
./mkversion.sh $@ $(LUCI_VERSION) "$(LUCI_GITBRANCH)"
|
|
|
|
compile: parser.so version.lua
|
|
|
|
install: compile
|
|
mkdir -p $(DESTDIR)/usr/lib/lua/luci/template
|
|
cp parser.so $(DESTDIR)/usr/lib/lua/luci/template/parser.so
|
|
cp version.lua $(DESTDIR)/usr/lib/lua/luci/version.lua
|