diff options
author | william <william@25tandclement.com> | 2014-09-22 15:03:08 -0700 |
---|---|---|
committer | william <william@25tandclement.com> | 2014-09-22 15:03:08 -0700 |
commit | d4914b31664e771ae93b88f6f83fb24c616b20fd (patch) | |
tree | ed9e8b545d096cb97a7864d1aa95b5e3a804c338 /src/GNUmakefile | |
parent | a5d3fa1f606facb9d169b0821172e4a0e416386f (diff) | |
download | luaossl-d4914b31664e771ae93b88f6f83fb24c616b20fd.tar.gz luaossl-d4914b31664e771ae93b88f6f83fb24c616b20fd.tar.bz2 luaossl-d4914b31664e771ae93b88f6f83fb24c616b20fd.zip |
bind opensslv.h and opensslconf.h macros
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r-- | src/GNUmakefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile index 6a0bb3c..1b77d43 100644 --- a/src/GNUmakefile +++ b/src/GNUmakefile | |||
@@ -87,6 +87,7 @@ LUAC$(1)_$(d) = $$(or $$(call LUAPATH_$(d), $(1), luac), true) | |||
87 | 87 | ||
88 | MODS$(1)_$(d) = \ | 88 | MODS$(1)_$(d) = \ |
89 | $$(DESTDIR)$(2)/_openssl.so \ | 89 | $$(DESTDIR)$(2)/_openssl.so \ |
90 | $$(DESTDIR)$(3)/openssl.lua \ | ||
90 | $$(DESTDIR)$(3)/openssl/bignum.lua \ | 91 | $$(DESTDIR)$(3)/openssl/bignum.lua \ |
91 | $$(DESTDIR)$(3)/openssl/pkey.lua \ | 92 | $$(DESTDIR)$(3)/openssl/pkey.lua \ |
92 | $$(DESTDIR)$(3)/openssl/pubkey.lua \ | 93 | $$(DESTDIR)$(3)/openssl/pubkey.lua \ |
@@ -111,6 +112,11 @@ $$(DESTDIR)$(2)/_openssl.so: $$(d)/$(1)/openssl.so | |||
111 | $$(MKDIR) -p $$(@D) | 112 | $$(MKDIR) -p $$(@D) |
112 | $$(CP) -fp $$< $$@ | 113 | $$(CP) -fp $$< $$@ |
113 | 114 | ||
115 | $$(DESTDIR)$(3)/openssl.lua: $$(d)/openssl.lua | ||
116 | $$(LUAC$(1)_$(d)) -p $$< | ||
117 | $$(MKDIR) -p $$(@D) | ||
118 | $$(CP) -p $$< $$@ | ||
119 | |||
114 | $$(DESTDIR)$(3)/openssl/%.lua: $$(d)/openssl.%.lua | 120 | $$(DESTDIR)$(3)/openssl/%.lua: $$(d)/openssl.%.lua |
115 | $$(LUAC$(1)_$(d)) -p $$< | 121 | $$(LUAC$(1)_$(d)) -p $$< |
116 | $$(MKDIR) -p $$(@D) | 122 | $$(MKDIR) -p $$(@D) |