1998-10-25 09:41:42 +08:00
|
|
|
# Master Makefile for OpenLDAP
|
2003-11-26 10:58:56 +08:00
|
|
|
# $OpenLDAP$
|
|
|
|
## Copyright 1998-2003 The OpenLDAP Foundation.
|
1998-12-29 04:08:17 +08:00
|
|
|
## All rights reserved.
|
|
|
|
##
|
2003-11-26 10:58:56 +08: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-29 04:08:17 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08: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 09:41:42 +08:00
|
|
|
|
1999-04-29 07:11:18 +08:00
|
|
|
SUBDIRS= include libraries clients servers tests doc
|
2001-07-07 13:28:23 +08:00
|
|
|
CLEANDIRS=
|
1999-04-29 07:11:18 +08:00
|
|
|
INSTALLDIRS=
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
makefiles: FORCE
|
|
|
|
./config.status
|
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
# force a make all before make install
|
|
|
|
# only done at the top-level
|
|
|
|
install-common: all FORCE
|
|
|
|
|
|
|
|
clean-local: FORCE
|
|
|
|
$(RM) config.log
|
|
|
|
|
|
|
|
veryclean-local: FORCE
|
2003-04-08 06:23:24 +08:00
|
|
|
$(RM) config.cache config.status libtool stamp-h stamp-h.in
|
1999-01-09 10:12:09 +08:00
|
|
|
|
|
|
|
distclean: veryclean FORCE
|
2000-05-20 05:01:36 +08:00
|
|
|
|
2002-02-13 14:35:27 +08:00
|
|
|
check: test
|
2000-05-20 05:01:36 +08:00
|
|
|
test: FORCE
|
|
|
|
cd tests; make test
|