diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-02 19:26:26 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-02 19:26:26 +0000 |
commit | 1322b0e1f7d7d297c8c31ee95cba05b7754bcc46 (patch) | |
tree | bcdd56c03d41d6e902ea4d7941cc1ac84b3eb50b | |
parent | 27c1f505ac225627f8f98f499af477c24f292ef4 (diff) |
don't differentiate GNU/Hurd and GNU/kFreeBSD from GNU/Linux since they should have the same libs
svn path=/trunk/externals/template/; revision=15450
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -155,7 +155,7 @@ ifeq ($(UNAME),GNU) OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer CFLAGS += -fPIC LDFLAGS += -Wl,--export-dynamic -shared -fPIC - LIBS += -lc $(LIBS_gnu) + LIBS += -lc $(LIBS_linux) STRIP = strip --strip-unneeded -R .note -R .comment DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) endif @@ -169,7 +169,7 @@ ifeq ($(UNAME),GNU/kFreeBSD) OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer CFLAGS += -fPIC LDFLAGS += -Wl,--export-dynamic -shared -fPIC - LIBS += -lc $(LIBS_kfreebsd) + LIBS += -lc $(LIBS_linux) STRIP = strip --strip-unneeded -R .note -R .comment DISTBINDIR=$(DISTDIR)-$(OS)-$(shell uname -m) endif |