diff options
author | william <william@25tandclement.com> | 2014-03-27 22:57:09 -0700 |
---|---|---|
committer | william <william@25tandclement.com> | 2014-03-27 22:57:09 -0700 |
commit | ea88fea73260424a1724a6ef5ecb0aa5dce68ba7 (patch) | |
tree | 62abe950e44cf911130426a4b7931e4e6a07f70b /GNUmakefile | |
parent | 8e755dcc092f0f46e7ff847d9672bfa7dde834c5 (diff) | |
download | luaossl-ea88fea73260424a1724a6ef5ecb0aa5dce68ba7.tar.gz luaossl-ea88fea73260424a1724a6ef5ecb0aa5dce68ba7.tar.bz2 luaossl-ea88fea73260424a1724a6ef5ecb0aa5dce68ba7.zip |
rename pubkey.lua to pkey.lua and create symlink on install for backward compatability
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 9c1fece..113ef06 100644 --- a/GNUmakefile +++ b/GNUmakefile | |||
@@ -32,6 +32,8 @@ RANLIB ?= ranlib | |||
32 | M4 ?= m4 | 32 | M4 ?= m4 |
33 | RM ?= rm | 33 | RM ?= rm |
34 | CP ?= cp | 34 | CP ?= cp |
35 | LN ?= ln | ||
36 | LN_S ?= $(LN) -s | ||
35 | RMDIR ?= rmdir | 37 | RMDIR ?= rmdir |
36 | MKDIR ?= mkdir | 38 | MKDIR ?= mkdir |
37 | CHMOD ?= chmod | 39 | CHMOD ?= chmod |
@@ -62,6 +64,8 @@ $(d)/config: | |||
62 | printf 'M4 ?= $(value M4)'"\n" >> $(@D)/.config | 64 | printf 'M4 ?= $(value M4)'"\n" >> $(@D)/.config |
63 | printf 'RM ?= $(value RM)'"\n" >> $(@D)/.config | 65 | printf 'RM ?= $(value RM)'"\n" >> $(@D)/.config |
64 | printf 'CP ?= $(value CP)'"\n" >> $(@D)/.config | 66 | printf 'CP ?= $(value CP)'"\n" >> $(@D)/.config |
67 | printf 'LN ?= $(value LN)'"\n" >> $(@D)/.config | ||
68 | printf 'LN_S ?= $(value LN_S)'"\n" >> $(@D)/.config | ||
65 | printf 'RMDIR ?= $(value RMDIR)'"\n" >> $(@D)/.config | 69 | printf 'RMDIR ?= $(value RMDIR)'"\n" >> $(@D)/.config |
66 | printf 'MKDIR ?= $(value MKDIR)'"\n" >> $(@D)/.config | 70 | printf 'MKDIR ?= $(value MKDIR)'"\n" >> $(@D)/.config |
67 | printf 'CHMOD ?= $(value CHMOD)'"\n" >> $(@D)/.config | 71 | printf 'CHMOD ?= $(value CHMOD)'"\n" >> $(@D)/.config |