From f4fb5871255701a0e635a1fc1d7fa6d653cde3d7 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 9 Jan 2015 13:19:28 +0100 Subject: [PATCH] luci-lib-px5g: add missing src Makefile and fix depends Signed-off-by: Jo-Philipp Wich --- libs/luci-lib-px5g/Makefile | 2 +- libs/luci-lib-px5g/src/Makefile | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 libs/luci-lib-px5g/src/Makefile diff --git a/libs/luci-lib-px5g/Makefile b/libs/luci-lib-px5g/Makefile index 906a1052e..ee07ba0f5 100644 --- a/libs/luci-lib-px5g/Makefile +++ b/libs/luci-lib-px5g/Makefile @@ -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 diff --git a/libs/luci-lib-px5g/src/Makefile b/libs/luci-lib-px5g/src/Makefile new file mode 100644 index 000000000..755565e2b --- /dev/null +++ b/libs/luci-lib-px5g/src/Makefile @@ -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 -- 2.11.0