mirror of https://github.com/openwrt/luci.git
luci-lib-px5g: add missing src Makefile and fix depends
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>pull/286/head
parent
3c6d03ddee
commit
f4fb587125
|
@ -7,7 +7,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
LUCI_TITLE:=RSA/X.509 Key Generator (required for LuCId SSL support)
|
||||
LUCI_DEPENDS:=+luci-lib-nixio
|
||||
LUCI_DEPENDS:=+liblua
|
||||
|
||||
include ../../luci.mk
|
||||
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
PX5G_CFLAGS = -I. -include polarssl/rsa.h -include polarssl/x509.h -std=gnu99
|
||||
PX5G_LDFLAGS = -llua -lm
|
||||
PX5G_OBJ = px5g.o library/bignum.o library/havege.o library/rsa.o library/sha1.o library/timing.o library/x509write.o
|
||||
PX5G_LIB = px5g.so
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CPPFLAGS) $(CFLAGS) $(LUA_CFLAGS) $(PX5G_CFLAGS) $(FPIC) -c -o $@ $<
|
||||
|
||||
compile: $(PX5G_OBJ)
|
||||
$(CC) $(LDFLAGS) -shared -o $(PX5G_LIB) $(PX5G_OBJ) $(PX5G_LDFLAGS)
|
||||
|
||||
install: compile
|
||||
mkdir -p $(DESTDIR)/usr/lib/lua
|
||||
cp $(PX5G_LIB) $(DESTDIR)/usr/lib/lua/$(PX5G_LIB)
|
||||
|
||||
clean:
|
||||
rm -f *.o *.so
|
Loading…
Reference in New Issue