From 63799e5c631ab0765b973f909ecb27a0454cbd2f Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 4 Sep 2006 12:39:41 +0000 Subject: r18035: - fixed 'make clean' to remove test objects - fixed 'make install' to create target dir should be ready to go into the build farm as a standalone build now? (This used to be commit 5feaeaf1dc6434874c8f4c0e913a7e6c70b87309) --- source4/lib/replace/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source4/lib/replace/Makefile.in') diff --git a/source4/lib/replace/Makefile.in b/source4/lib/replace/Makefile.in index 9c16448b92..4d14fe5123 100644 --- a/source4/lib/replace/Makefile.in +++ b/source4/lib/replace/Makefile.in @@ -16,6 +16,7 @@ OBJS = dlfcn.o getpass.o replace.o snprintf.o all: libreplace.a install: all + mkdir -p $(libdir) $(INSTALL) libreplace.a $(libdir) libreplace.a: $(OBJS) @@ -36,7 +37,7 @@ testsuite: libreplace.a $(TEST_OBJS) @$(CC) $(CFLAGS) -c $< -o $@ clean: - rm -f *.o *.a testsuite + rm -f *.o test/*.o *.a testsuite distclean: clean rm -f *~ */*~ -- cgit