mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
28 lines
573 B
Makefile
28 lines
573 B
Makefile
## Copyright 1998 The OpenLDAP Foundation, All Rights Reserved.
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
##
|
|
## tests Makefile.in for OpenLDAP
|
|
|
|
|
|
SCRIPTSDIR=./scripts
|
|
|
|
all-local: FORCE
|
|
@echo "Initiating LDAP tests..."; \
|
|
$(MKDIR) -p test-db test-repl ; \
|
|
$(SCRIPTSDIR)/all $(SCRIPTSDIR)
|
|
|
|
clean-local: FORCE
|
|
$(RM) test-db/[!C]* test-repl/[!C]* *core
|
|
|
|
veryclean-local: clean
|
|
|
|
depend-local: FORCE
|
|
|
|
install-local: FORCE
|
|
|
|
all-common: all-local
|
|
install-common: install-local
|
|
clean-common: clean-local
|
|
veryclean-common: veryclean-local
|
|
depend-common: depend-local
|