Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LSH
lsh
Commits
f35c9f61
Commit
f35c9f61
authored
Apr 26, 2007
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
* Makefile.in: New manually written Makefile.in.
Rev: Makefile.in:1.1
parent
b4eb52fb
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile.in
+138
-0
138 additions, 0 deletions
Makefile.in
with
138 additions
and
0 deletions
Makefile.in
0 → 100644
+
138
−
0
View file @
f35c9f61
# Top-level lsh Makefile
@SET_MAKE@
srcdir
=
@srcdir@
VPATH
=
@srcdir@
PACKAGE_TARNAME
=
@PACKAGE_TARNAME@
PACKAGE_VERSION
=
@PACKAGE_VERSION@
AUTOCONF
=
autoconf
# The directories most targets should recurse into
BUILD_SUBDIRS
=
@BUILD_SUBDIRS@ src
SUBDIRS
=
argp nettle spki src
all check
:
set
-e
;
for
d
in
$(
SUBDIRS
);
do
\
echo
"Making
$@
in
$$
d"
;
(
cd
$$
d
&&
$(
MAKE
)
$@
)
;
done
install uninstall
:
# Should recurse only into the lsh dir
true
clean distclean mostlyclean maintainer-clean tags
:
set
-e
;
for
d
in
$(
SUBDIRS
);
do
\
echo
"Making
$@
in
$$
d"
;
(
cd
$$
d
&&
$(
MAKE
)
$@
)
;
done
$(
MAKE
)
$@
-here
all-here check-here tags-here clean-here
:
true
distclean-here
:
clean
-
rm
-f
config.log config.status Makefile
maintainer-clean-here
:
distclean-here
bootstrap
:
set
-e
;
for
d
in
spki src
;
do
\
echo
"Making
$@
in
$$
d"
;
(
cd
$$
d
&&
$(
MAKE
)
$@
)
;
done
# Configure-related rules, mostly copied from the autoconf manual. No
# $(srcdir) prefixes on the targets, though.
configure
:
configure.ac aclocal.m4
cd
$(
srcdir
)
&&
$(
AUTOCONF
)
# autoheader might not change config.h.in, so touch a stamp file.
config.h.in
:
stamp-h.in
stamp-h.in
:
configure.ac aclocal.m4
cd
$(
srcdir
)
&&
autoheader
echo
timestamp
>
$(
srcdir
)
/stamp-h.in
config.status
:
configure
./config.status
--recheck
config.h
:
stamp-h
stamp-h
:
config.h.in config.status
./config.status config.h
echo
timestamp
>
stamp-h
Makefile
:
Makefile.in config.status
./config.status
$@
# Distribution
DISTFILES
=
.bootstrap aclocal.m4 configure.ac
\
configure stamp-h.in
\
config.guess config.sub install-sh texinfo.tex
\
Makefile.in
\
ANNOUNCE AUTHORS FAQ README COPYING
\
ChangeLog ChangeLog.1 ChangeLog.2
\
NEWS FAQ distribution-key.gpg
distdir
=
$(
PACKAGE_TARNAME
)
-
$(
PACKAGE_VERSION
)
top_distdir
=
$(
distdir
)
# We should handle both absolute and relative $destdir.
distdir
:
$(DISTFILES)
rm
-rf
"
$(
distdir
)
"
mkdir
"
$(
distdir
)
"
set
-e
;
for
f
in
$(
DISTFILES
)
;
do
\
if
[
-f
"
$$
f"
]
;
then
cp
"
$$
f"
"
$(
distdir
)
"
;
\
else
cp
"
$(
srcdir
)
/
$$
f"
"
$(
distdir
)
"
;
\
fi
;
\
done
set
-e
;
for
d
in
$(
SUBDIRS
);
do
\
sd
=
"
$(
distdir
)
/
$$
d"
;
\
mkdir
"
$$
sd"
&&
$(
MAKE
)
-C
$$
d
distdir
=
"
`
cd
$$
sd
&&
pwd
`
"
$@
;
\
done
dist
:
distdir
tar
cf -
$(
distdir
)
|
gzip
-c
>
$(
distdir
)
.tar.gz
rm
-rf
$(
distdir
)
rm_distcheck
=
test
!
-d
distcheck-tmp
\
||
{
find distcheck-tmp
-type
d
!
-perm
-200
-exec
chmod
u+w
{}
';'
\
&&
rm
-fr
distcheck-tmp
;
}
;
distcheck
:
dist
$(
rm_distcheck
)
mkdir
distcheck-tmp
gzip
-d
<
$(
distdir
)
.tar.gz
\
|
{
cd
distcheck-tmp
&&
tar
xf -
&&
chmod
-R
a-w
$(
distdir
)
;
}
mkdir
distcheck-tmp/build
mkdir
distcheck-tmp/install
cd
distcheck-tmp/build
&&
../
$(
distdir
)
/configure
--prefix
=
"
`
cd
../install
&&
pwd
`
"
cd
distcheck-tmp/build
&&
$(
MAKE
)
cd
distcheck-tmp/build
&&
$(
MAKE
)
check
cd
distcheck-tmp/build
&&
$(
MAKE
)
install
cd
distcheck-tmp/build
&&
$(
MAKE
)
uninstall
cd
distcheck-tmp
&&
find
install
-type
f
-print
>
leftover-install-files
@
test
`
cat
distcheck-tmp/leftover-install-files |
wc
-l
`
-le
1
\
||
{
echo
"ERROR: files left after uninstall:"
;
\
cat
distcheck-tmp/leftover-install-files
;
\
exit
1
;
}
chmod
-R
a-w distcheck-tmp/install
mkdir
distcheck-tmp/destdir
destdir
=
"
`
cd
distcheck-tmp/destdir
&&
pwd
`
"
\
&&
cd
distcheck-tmp/build
\
&&
$(
MAKE
)
install
DESTDIR
=
"
$$
destdir"
\
&&
$(
MAKE
)
uninstall
DESTDIR
=
"
$$
destdir"
cd
distcheck-tmp
&&
find destdir
-type
f
-print
>
leftover-destdir-files
@
test
`
cat
distcheck-tmp/leftover-destdir-files |
wc
-l
`
-le
1
\
||
{
echo
"ERROR: destdir files left after uninstall:"
;
\
cat
distcheck-tmp/leftover-destdir-files
;
\
exit
1
;
}
cd
distcheck-tmp/build
&&
$(
MAKE
)
dist
cd
distcheck-tmp/build
&&
rm
*
.gz
cd
distcheck-tmp/build
&&
$(
MAKE
)
distclean
cd
distcheck-tmp
&&
find build
-type
f
-print
>
leftover-build-files
@
test
`
cat
distcheck-tmp/leftover-build-files |
wc
-l
`
-eq
0
\
||
{
echo
"ERROR: files left in build directory after distclean:"
;
\
cat
distcheck-tmp/leftover-build-files
;
\
exit
1
;
}
$(
rm_distcheck
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment