summaryrefslogtreecommitdiff
path: root/libutil
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-10-11 19:42:32 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-10-11 19:42:32 +0000
commitc60a8a994f74eb1bb3dff3bc47c38c727500c9f6 (patch)
tree084d173c2cdc0493beba65dfdfd1c4a77ab5b060 /libutil
parent50143b1b6f026d55bfc9156b84c3dee0773e47f5 (diff)
Undo size optimizing patch that does not work with gcc-4.1-head, reported by sjhill, thanks cow for testing
Diffstat (limited to 'libutil')
-rw-r--r--libutil/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/libutil/Makefile b/libutil/Makefile
index e825b2aba..db440dbf1 100644
--- a/libutil/Makefile
+++ b/libutil/Makefile
@@ -42,10 +42,13 @@ else
all: $(AR_LIB_NAME)
endif
-$(AR_LIB_NAME): $(LIB_NAME).o
+# psm: 20051007 gcc-4.1-head optimizes crypt()/__des_crypt() away
+# $(AR_LIB_NAME): $(LIB_NAME).o
+
+$(AR_LIB_NAME): $(OBJS)
$(INSTALL) -d $(TOPDIR)lib
$(RM) $@
- $(AR) $(ARFLAGS) $@ $<
+ $(AR) $(ARFLAGS) $@ $^
$(SO_LIB_NAME): $(AR_LIB_NAME)
$(RM) $(TOPDIR)lib/$(SO_FULL_NAME) $(SO_LIB_NAME).$(MAJOR_VERSION) $@
@@ -60,5 +63,9 @@ $(LIB_NAME).o: $(CSRC)
$(CC) $(CFLAGS) -o $@ -c $^
$(STRIPTOOL) -x -R .note -R .comment $@
+$(OBJS): %.o : %.c
+ $(CC) $(CFLAGS) -c $< -o $@
+ $(STRIPTOOL) -x -R .note -R .comment $*.o
+
clean:
$(RM) *.o *~ core