diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-08-22 12:03:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-08-22 12:03:53 +0000 |
commit | 2c7e5c09a27ccb0e6ca7274fd464165e3f25a03e (patch) | |
tree | 60f4909a17c9549a6b029da36ab5b5ed33008c51 /Makefile | |
parent | d3154acac086c48b2731621ce86e677cfe3bfd1e (diff) |
Hide .hidden stuff unless explicitly enabled
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -193,7 +193,6 @@ uClibc_config: Makefile Config else \ echo "#undef __UCLIBC_HAS_RPC__" >> include/bits/uClibc_config.h ; \ fi - @echo "#define C_SYMBOL_PREFIX "\""$(C_SYMBOL_PREFIX)"\" >> include/bits/uClibc_config.h @if [ "$(DOLFS)" = "true" ] ; then \ echo "#define __UCLIBC_HAVE_LFS__ 1" >> include/bits/uClibc_config.h ; \ else \ @@ -219,6 +218,12 @@ uClibc_config: Makefile Config else \ echo "#undef ASSUME_DEVPTS" >> include/bits/uClibc_config.h ; \ fi + @echo "#define C_SYMBOL_PREFIX "\""$(C_SYMBOL_PREFIX)"\" >> include/bits/uClibc_config.h + @if [ "$(HAVE_DOT_HIDDEN)" = "true" ] ; then \ + echo "#define HAVE_DOT_HIDDEN 1" >> include/bits/uClibc_config.h ; \ + else \ + echo "#undef HAVE_DOT_HIDDEN" >> include/bits/uClibc_config.h ; \ + fi subdirs: $(patsubst %, _dir_%, $(DIRS)) |