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 /libc/misc/Makefile | |
parent | b0c8130cec05f40ce926058d18fbc520b1a0e856 (diff) |
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 'libc/misc/Makefile')
-rw-r--r-- | libc/misc/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/libc/misc/Makefile b/libc/misc/Makefile index 9d2d74a2b..e512467e8 100644 --- a/libc/misc/Makefile +++ b/libc/misc/Makefile @@ -28,25 +28,25 @@ include $(TOPDIR)Rules.mak DIRS = assert ctype dirent file fnmatch internals \ mntent syslog time utmp sysvipc statfs \ error ttyent gnu search locale -ifeq ($(strip $(UCLIBC_HAS_REGEX)),y) +ifeq ($(UCLIBC_HAS_REGEX),y) DIRS += regex endif -ifeq ($(strip $(UCLIBC_HAS_WORDEXP)),y) +ifeq ($(UCLIBC_HAS_WORDEXP),y) DIRS += wordexp endif -ifeq ($(strip $(UCLIBC_HAS_THREADS)),y) +ifeq ($(UCLIBC_HAS_THREADS),y) DIRS += pthread endif -ifeq ($(strip $(UCLIBC_HAS_WCHAR)),y) +ifeq ($(UCLIBC_HAS_WCHAR),y) DIRS += wctype wchar endif -ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y) +ifeq ($(UCLIBC_HAS_GETTEXT_AWARENESS),y) DIRS += intl endif -ifeq ($(strip $(UCLIBC_HAS_FTW)),y) +ifeq ($(UCLIBC_HAS_FTW),y) DIRS += ftw endif -ifeq ($(strip $(UCLIBC_HAS_GLOB)),y) +ifeq ($(UCLIBC_HAS_GLOB),y) DIRS += glob endif @@ -56,7 +56,6 @@ tags: ctags -R clean: subdirs_clean - $(RM) *.[oa] *~ core subdirs: $(patsubst %, _dir_%, $(DIRS)) subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS)) |