summaryrefslogtreecommitdiff
path: root/libcrypt/Makefile
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-18 23:30:31 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-18 23:30:31 +0000
commit99e973a956a6d682f3014d1b35a8ff4cb557bd0e (patch)
tree78c158b54c76bfcd4b67c64934a4d41fedb602b0 /libcrypt/Makefile
parentd1155a7c1e364182e441ead2d7bd3e445cd8f8bb (diff)
rework dependencies so the archive is re-created only when the object files have been updated
Diffstat (limited to 'libcrypt/Makefile')
-rw-r--r--libcrypt/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile
index 497e5307c..ec860dc18 100644
--- a/libcrypt/Makefile
+++ b/libcrypt/Makefile
@@ -33,11 +33,9 @@ LIBCRYPT_SHARED_FULLNAME=libcrypt-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).
CSRC = crypt.c des.c md5.c
OBJS=$(patsubst %.c,%.o, $(CSRC))
-all: $(OBJS) $(LIBCRYPT)
+all: $(LIBCRYPT)
-$(LIBCRYPT): ar-target
-
-ar-target: $(OBJS)
+$(LIBCRYPT) ar-target: $(OBJS)
$(AR) $(ARFLAGS) $(LIBCRYPT) $(OBJS)
$(INSTALL) -d $(TOPDIR)lib
$(RM) $(TOPDIR)lib/$(LIBCRYPT)