1# gmake will override this
2MAKE=make
3
4default: Makefile.config
5	$(MAKE) -f Makefile.defs
6install:
7	$(MAKE) -f Makefile.defs install
8
9Makefile.config: configure
10	$(MAKE) clean
11	./configure
12
13clean:
14	rm -f *.o ldapdns ldapaxfr test_1.c test_1.o test_1
15realclean: clean
16	rm -f Makefile.config
17
18