Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
openldap
OpenLDAP
Commits
25095549
Commit
25095549
authored
Aug 15, 1999
by
Kurt Zeilenga
Browse files
Backout last two commits. Merged rule breaks specific behavior
of each rule!
parent
1a5734c5
Changes
1
Hide whitespace changes
Inline
Side-by-side
build/dir.mk
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
Write
Preview
Supports
Markdown
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