diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-12 16:12:36 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-12 16:12:36 +0000 |
commit | 3a7ac9c7a7b4d6181d3cd70a9cb85d93a1938238 (patch) | |
tree | f87aedb508cd30ff8d50b75dbe832d34ac5dad85 /libnsl | |
parent | b0c8130cec05f40ce926058d18fbc520b1a0e856 (diff) | |
download | uClibc-alpine-3a7ac9c7a7b4d6181d3cd70a9cb85d93a1938238.tar.bz2 uClibc-alpine-3a7ac9c7a7b4d6181d3cd70a9cb85d93a1938238.tar.xz |
Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
Diffstat (limited to 'libnsl')
-rw-r--r-- | libnsl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libnsl/Makefile b/libnsl/Makefile index 45525c898..b7367fb57 100644 --- a/libnsl/Makefile +++ b/libnsl/Makefile @@ -19,7 +19,7 @@ TOPDIR=../ include $(TOPDIR)Rules.mak -CFLAGS+=$(SSP_ALL_CFLAGS) +CFLAGS += $(SSP_ALL_CFLAGS) LIB_NAME := libnsl AR_LIB_NAME := $(TOPDIR)lib/$(LIB_NAME).a @@ -30,7 +30,7 @@ CSRC := $(wildcard *.c) OBJS := $(patsubst %.c,%.o, $(CSRC)) -ifeq ($(strip $(HAVE_SHARED)),y) +ifeq ($(HAVE_SHARED),y) all: $(SO_LIB_NAME) else all: $(AR_LIB_NAME) |