1998-10-25 01:41:42 +00:00
|
|
|
# Master Makefile for OpenLDAP
|
2003-11-26 02:58:56 +00:00
|
|
|
# $OpenLDAP$
|
2003-11-26 04:17:25 +00:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2024-03-26 19:45:35 +00:00
|
|
|
## Copyright 1998-2024 The OpenLDAP Foundation.
|
1998-12-28 20:08:17 +00:00
|
|
|
## All rights reserved.
|
|
|
|
##
|
2003-11-26 02:58:56 +00:00
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
## Public License.
|
1998-12-28 20:08:17 +00:00
|
|
|
##
|
2003-11-26 02:58:56 +00:00
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
1998-10-25 01:41:42 +00:00
|
|
|
|
1999-04-28 23:11:18 +00:00
|
|
|
SUBDIRS= include libraries clients servers tests doc
|
2001-07-07 05:28:23 +00:00
|
|
|
CLEANDIRS=
|
1999-04-28 23:11:18 +00:00
|
|
|
INSTALLDIRS=
|
1998-10-25 01:41:42 +00:00
|
|
|
|
|
|
|
makefiles: FORCE
|
|
|
|
./config.status
|
|
|
|
|
1998-11-22 04:22:28 +00:00
|
|
|
# force a make all before make install
|
|
|
|
# only done at the top-level
|
|
|
|
install-common: all FORCE
|
|
|
|
|
|
|
|
clean-local: FORCE
|
2005-08-29 21:02:44 +00:00
|
|
|
$(RM) config.cache config.log configure.lineno
|
|
|
|
$(RM) -r autom4te.cache
|
1998-11-22 04:22:28 +00:00
|
|
|
|
|
|
|
veryclean-local: FORCE
|
2023-01-25 15:26:20 +02:00
|
|
|
$(RM) config.status libtool stamp-h stamp-h.in libraries/libldap/ldap.pc libraries/liblber/lber.pc
|
1999-01-09 02:12:09 +00:00
|
|
|
|
|
|
|
distclean: veryclean FORCE
|
2000-05-19 21:01:36 +00:00
|
|
|
|
2002-02-13 06:35:27 +00:00
|
|
|
check: test
|
2000-05-19 21:01:36 +00:00
|
|
|
test: FORCE
|
2018-07-25 16:18:20 +01:00
|
|
|
cd tests && $(MAKE) test
|