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
Jaak Ristioja
OpenLDAP
Commits
25095549
Commit
25095549
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Backout last two commits. Merged rule breaks specific behavior
of each rule!
parent
1a5734c5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/dir.mk
+39
-7
39 additions, 7 deletions
build/dir.mk
with
39 additions
and
7 deletions
build/dir.mk
+
39
−
7
View file @
25095549
...
...
@@ -6,13 +6,45 @@
## Makes subdirectories
##
all-common install-common clean-common veryclean-common depend-common
:
FORCE
@
t
=
`
echo
$@
|
cut
-d-
-f1
`
;
\
echo
"Making
$$
t in
`
$(
PWD
)
`
"
;
\
for
i
in
$(
SUBDIRS
);
do
\
echo
" Entering subdirectory
$$
i to execute:"
;
\
echo
"
$(
MAKE
)
$(
MFLAGS
)
$$
t"
;
\
(
cd
$$
i
;
$(
MAKE
)
$(
MFLAGS
)
$$
t
)
;
\
all-common
:
FORCE
@
echo
"Making all in
`
$(
PWD
)
`
"
@
for
i
in
$(
SUBDIRS
)
$(
ALLDIRS
);
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(
MAKE
)
$(
MFLAGS
)
all
)
;
\
echo
" "
;
\
done
install-common
:
FORCE
@
echo
"Making install in
`
$(
PWD
)
`
"
@
for
i
in
$(
SUBDIRS
)
$(
INSTALLDIRS
);
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(
MAKE
)
$(
MFLAGS
)
install
)
;
\
echo
" "
;
\
done
clean-common
:
FORCE
@
echo
"Making clean in
`
$(
PWD
)
`
"
@
for
i
in
$(
SUBDIRS
)
$(
CLEANDIRS
);
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(
MAKE
)
$(
MFLAGS
)
clean
)
;
\
echo
" "
;
\
done
veryclean-common
:
FORCE
@
echo
"Making veryclean in
`
$(
PWD
)
`
"
@
for
i
in
$(
SUBDIRS
)
$(
CLEANDIRS
);
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(
MAKE
)
$(
MFLAGS
)
veryclean
)
;
\
echo
" "
;
\
done
depend-common
:
FORCE
@
echo
"Making depend in
`
$(
PWD
)
`
"
@
for
i
in
$(
SUBDIRS
)
$(
DEPENDDIRS
);
do
\
echo
" Entering subdirectory
$$
i"
;
\
(
cd
$$
i
;
$(
MAKE
)
$(
MFLAGS
)
depend
)
;
\
echo
" "
;
\
done
Makefile
:
$(top_srcdir)/build/dir.mk
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