summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-09-06 01:07:11 +0000
committerEric Andersen <andersen@codepoet.org>2003-09-06 01:07:11 +0000
commit57b8cbe907774a6a93eb6598db738351ad912b20 (patch)
tree34a4c48b0402e4cc551f5bc84b25df952fafe1b5 /Makefile
parent72d74d713b28ac4bc7892b347a8a9ad6921fdc04 (diff)
Add more pretty comments
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 2c75740c4..78b8e2b4c 100644
--- a/Makefile
+++ b/Makefile
@@ -183,33 +183,37 @@ install_dev:
-install -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)/lib/
tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
- # Remove wide char headers if no wide char support.
+ # Remove wide char headers if wide char support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/wctype.h
rm $(PREFIX)$(DEVEL_PREFIX)/include/wchar.h
endif
ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
- # Remove iconv header if no locale support.
+ # Remove iconv header if locale support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/iconv.h
endif
ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
- # Remove xlocale header if no extended locale support.
+ # Remove xlocale header if extended locale support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/xlocale.h
endif
ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
- # Remove libintl header if no gettext support.
+ # Remove libintl header if gettext support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/libintl.h
endif
ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
+ # Remove regex headers if regex support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/regex.h
rm $(PREFIX)$(DEVEL_PREFIX)/include/regexp.h
endif
ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
+ # Remove wordexp header if wordexp support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/wordexp.h
endif
ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
+ # Remove ftw header if ftw support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/ftw.h
endif
ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
+ # Remove glob header if glob support is disabled.
rm $(PREFIX)$(DEVEL_PREFIX)/include/glob.h
endif
-@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \