summaryrefslogtreecommitdiff
path: root/libcrypt
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-10-07 16:27:57 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-10-07 16:27:57 +0000
commit8e87f7ffea28e5b1bc693a40e7d79e6e6509eee9 (patch)
tree576d5f56b44aff35e1ba982a6e99591471d09b9e /libcrypt
parent4583f84ac9ba043394be13c417e6fa0c82338c5f (diff)
Doing the compile in one step creates smaller archives, libcrypt.a shrinks from 12k to 10k, libutil.a to 8k to 4k. Use make provided features where possible /$</$^.
Diffstat (limited to 'libcrypt')
-rw-r--r--libcrypt/Makefile20
1 files changed, 9 insertions, 11 deletions
diff --git a/libcrypt/Makefile b/libcrypt/Makefile
index 2b129a8e2..86781e4c5 100644
--- a/libcrypt/Makefile
+++ b/libcrypt/Makefile
@@ -33,31 +33,29 @@ SO_FULL_NAME=$(LIB_NAME)-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so
CSRC = $(wildcard *.c)
-OBJS=$(patsubst %.c,%.o, $(CSRC))
-
ifeq ($(strip $(HAVE_SHARED)),y)
all: $(SO_LIB_NAME)
else
all: $(AR_LIB_NAME)
endif
-$(AR_LIB_NAME): $(OBJS)
+$(AR_LIB_NAME): $(LIB_NAME).o
$(INSTALL) -d $(TOPDIR)lib
- $(RM) $(AR_LIB_NAME)
- $(AR) $(ARFLAGS) $(AR_LIB_NAME) $(OBJS)
+ $(RM) $@
+ $(AR) $(ARFLAGS) $@ $<
$(SO_LIB_NAME): $(AR_LIB_NAME)
- $(RM) $(TOPDIR)lib/$(SO_FULL_NAME) $(SO_LIB_NAME).$(MAJOR_VERSION) $(SO_LIB_NAME)
+ $(RM) $(TOPDIR)lib/$(SO_FULL_NAME) $(SO_LIB_NAME).$(MAJOR_VERSION) $@
$(LD) $(LDFLAGS) -soname=$(LIB_NAME).so.$(MAJOR_VERSION) \
- -o $(TOPDIR)lib/$(SO_FULL_NAME) --whole-archive $(AR_LIB_NAME) \
+ -o $(TOPDIR)lib/$(SO_FULL_NAME) --whole-archive $< \
--no-whole-archive $(TOPDIR)libc/misc/internals/interp.o \
-L$(TOPDIR)lib -lc $(LDADD_LIBFLOAT) $(LIBGCC)
$(LN) -sf $(SO_FULL_NAME) $(SO_LIB_NAME).$(MAJOR_VERSION)
- $(LN) -sf $(SO_FULL_NAME) $(SO_LIB_NAME)
+ $(LN) -sf $(SO_FULL_NAME) $@
-$(OBJS): %.o : %.c
- $(CC) $(CFLAGS) -c $< -o $@
- $(STRIPTOOL) -x -R .note -R .comment $*.o
+$(LIB_NAME).o: $(CSRC)
+ $(CC) $(CFLAGS) -o $@ -c $^
+ $(STRIPTOOL) -x -R .note -R .comment $@
clean:
$(RM) *.o *~ core