OSDN Git Service

Undo size optimizing patch that does not work with gcc-4.1-head, reported by sjhill...
authorPeter S. Mazinger <ps.m@gmx.net>
Tue, 11 Oct 2005 19:42:32 +0000 (19:42 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Tue, 11 Oct 2005 19:42:32 +0000 (19:42 -0000)
libcrypt/Makefile
libutil/Makefile

index 86781e4..a4b8f59 100644 (file)
@@ -39,10 +39,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) $@
@@ -57,5 +60,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
index e825b2a..db440db 100644 (file)
@@ -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