diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-04 12:39:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:17:05 -0500 |
commit | 63799e5c631ab0765b973f909ecb27a0454cbd2f (patch) | |
tree | e529533b64df0f4892439dd831e423f626a05786 /source4/lib/replace/Makefile.in | |
parent | 7e97a15fa0b67278499aa9aa3e2a307e5c8db097 (diff) | |
download | samba-63799e5c631ab0765b973f909ecb27a0454cbd2f.tar.gz samba-63799e5c631ab0765b973f909ecb27a0454cbd2f.tar.bz2 samba-63799e5c631ab0765b973f909ecb27a0454cbd2f.zip |
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)
Diffstat (limited to 'source4/lib/replace/Makefile.in')
-rw-r--r-- | source4/lib/replace/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
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 *~ */*~ |