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