Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
8738e5e3
Commit
8738e5e3
authored
9 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
ITS#8169 more Makefile tweaks
Fix prev commit, use all the same vars as main OpenLDAP makefiles
parent
99427fca
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/liblmdb/Makefile
+13
-8
13 additions, 8 deletions
libraries/liblmdb/Makefile
with
13 additions
and
8 deletions
libraries/liblmdb/Makefile
+
13
−
8
View file @
8738e5e3
...
...
@@ -27,7 +27,12 @@ CFLAGS = $(THREADS) $(OPT) $(W) $(XCFLAGS)
LDLIBS
=
SOLIBS
=
prefix
=
/usr/local
mandir
=
$(
prefix
)
/man
exec_prefix
=
$(
prefix
)
bindir
=
$(
exec_prefix
)
/bin
libdir
=
$(
exec_prefix
)
/lib
includedir
=
$(
prefix
)
/include
datarootdir
=
$(
prefix
)
/share
mandir
=
$(
datarootdir
)
/man
########################################################################
...
...
@@ -39,13 +44,13 @@ PROGS = $(IPROGS) mtest mtest2 mtest3 mtest4 mtest5
all
:
$(ILIBS) $(PROGS)
install
:
$(ILIBS) $(IPROGS) $(IHDRS)
mkdir
-p
$(
DESTDIR
)$(
prefix
)
/bin
mkdir
-p
$(
DESTDIR
)$(
prefix
)
/lib
mkdir
-p
$(
DESTDIR
)$(
prefix
)
/
include
mkdir
-p
$(
DESTDIR
)$(
prefix
)
/man
/man1
for
f
in
$(
IPROGS
);
do
cp
$$
f
$(
DESTDIR
)$(
prefix
)
/bin
;
done
for
f
in
$(
ILIBS
);
do
cp
$$
f
$(
DESTDIR
)$(
prefix
)
/lib
;
done
for
f
in
$(
IHDRS
);
do
cp
$$
f
$(
DESTDIR
)$(
prefix
)
/
include
;
done
mkdir
-p
$(
DESTDIR
)$(
bindir
)
mkdir
-p
$(
DESTDIR
)$(
libdir
)
mkdir
-p
$(
DESTDIR
)$(
include
dir
)
mkdir
-p
$(
DESTDIR
)$(
mandir
)
/man1
for
f
in
$(
IPROGS
);
do
cp
$$
f
$(
DESTDIR
)$(
bindir
)
;
done
for
f
in
$(
ILIBS
);
do
cp
$$
f
$(
DESTDIR
)$(
libdir
)
;
done
for
f
in
$(
IHDRS
);
do
cp
$$
f
$(
DESTDIR
)$(
include
dir
)
;
done
for
f
in
$(
IDOCS
);
do
cp
$$
f
$(
DESTDIR
)$(
mandir
)
/man1
;
done
clean
:
...
...
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