mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
6f92e197dc
Updated to use libtool 1.2 (with FreeBSD3.0 a.out v. elf detection). Updated autoconf to 1.12 with sed patch (don't use stock 1.12). aclocal.m4 is built using automake's aclocal, v1.3. Updated mkdep to support libtool .lo files. Updated automake provided macros for TERMIOS, STRTOD, MKTIME, PTRDIFF_T Autoconf now checks to ensure C compiler supports ANSI C prototypes. Updated make files templates.
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
##---------------------------------------------------------------------------
|
|
##
|
|
## Makes subdirectories
|
|
##
|
|
|
|
|
|
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
|