Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
M
MSP-OpenSSL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cyber security
T
TS 103 523 MSP
TLMSP
MSP-OpenSSL
Commits
408d13f6
Commit
408d13f6
authored
May 03, 2018
by
powelld
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update to version 0.1 to include missing makefiles
parent
e4e7103b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
Makefile
tools/Makefile
+59
-0
No files found.
tools/Makefile
0 → 100644
View file @
408d13f6
#
# OpenSSL/tools/Makefile
#
DIR
=
tools
TOP
=
..
CC
=
cc
INCLUDES
=
-I
$(TOP)
-I
../../include
CFLAG
=
-g
MAKEFILE
=
Makefile
CFLAGS
=
$(INCLUDES)
$(CFLAG)
GENERAL
=
Makefile
TEST
=
APPS
=
c_rehash
MISC_APPS
=
c_hash c_info c_issuer c_name
all
:
install
:
@
[
-n
"
$(INSTALLTOP)
"
]
# should be set by top Makefile...
@
for
i
in
$(APPS)
;
\
do
\
(
cp
$$
i
$(INSTALL_PREFIX)$(INSTALLTOP)
/bin/
$$
i.new
;
\
chmod
755
$(INSTALL_PREFIX)$(INSTALLTOP)
/bin/
$$
i.new
;
\
mv
-f
$(INSTALL_PREFIX)$(INSTALLTOP)
/bin/
$$
i.new
$(INSTALL_PREFIX)$(INSTALLTOP)
/bin/
$$
i
)
;
\
done
;
@
for
i
in
$(MISC_APPS)
;
\
do
\
(
cp
$$
i
$(INSTALL_PREFIX)$(OPENSSLDIR)
/misc/
$$
i.new
;
\
chmod
755
$(INSTALL_PREFIX)$(OPENSSLDIR)
/misc/
$$
i.new
;
\
mv
-f
$(INSTALL_PREFIX)$(OPENSSLDIR)
/misc/
$$
i.new
$(INSTALL_PREFIX)$(OPENSSLDIR)
/misc/
$$
i
)
;
\
done
;
files
:
$(PERL)
$(TOP)
/util/files.pl Makefile
>>
$(TOP)
/MINFO
links
:
lint
:
tags
:
errors
:
depend
:
dclean
:
$(PERL)
-pe
'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}'
$(MAKEFILE)
>
Makefile.new
mv
-f
Makefile.new
$(MAKEFILE)
rm
-f
c_rehash
clean
:
rm
-f
*
.o
*
.obj lib tags core .pure .nfs
*
*
.old
*
.bak fluff
errors
:
# DO NOT DELETE THIS LINE -- make depend depends on it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment