| 1 |
1325 |
phoenix |
# Makefile for uClibc
|
| 2 |
|
|
#
|
| 3 |
|
|
# Copyright (C) 2000-2003 Erik Andersen
|
| 4 |
|
|
#
|
| 5 |
|
|
# This program is free software; you can redistribute it and/or
|
| 6 |
|
|
# modify it under the terms of the GNU Library General Public
|
| 7 |
|
|
# License as published by the Free Software Foundation; either
|
| 8 |
|
|
# version 2 of the License, or (at your option) any later
|
| 9 |
|
|
# version.
|
| 10 |
|
|
#
|
| 11 |
|
|
# This program is distributed in the hope that it will be useful,
|
| 12 |
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 13 |
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 14 |
|
|
# GNU Library General Public License for more details.
|
| 15 |
|
|
#
|
| 16 |
|
|
# You should have received a copy of the GNU Library General
|
| 17 |
|
|
# Public License along with this program; if not, write to the
|
| 18 |
|
|
# Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
| 19 |
|
|
# Boston, MA 02111-1307 USA
|
| 20 |
|
|
|
| 21 |
|
|
|
| 22 |
|
|
#--------------------------------------------------------------
|
| 23 |
|
|
# You shouldn't need to mess with anything beyond this point...
|
| 24 |
|
|
#--------------------------------------------------------------
|
| 25 |
|
|
noconfig_targets := menuconfig config oldconfig randconfig \
|
| 26 |
|
|
defconfig allyesconfig allnoconfig clean distclean \
|
| 27 |
|
|
release tags TAGS
|
| 28 |
|
|
TOPDIR=./
|
| 29 |
|
|
include Rules.mak
|
| 30 |
|
|
|
| 31 |
|
|
DIRS = ldso libc libcrypt libresolv libnsl libutil libm libpthread
|
| 32 |
|
|
ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
|
| 33 |
|
|
DIRS += libintl
|
| 34 |
|
|
endif
|
| 35 |
|
|
|
| 36 |
|
|
ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
|
| 37 |
|
|
|
| 38 |
|
|
all: headers pregen subdirs shared finished
|
| 39 |
|
|
|
| 40 |
|
|
# In this section, we need .config
|
| 41 |
|
|
-include .config.cmd
|
| 42 |
|
|
|
| 43 |
|
|
.PHONY: $(SHARED_TARGET)
|
| 44 |
|
|
shared: $(SHARED_TARGET)
|
| 45 |
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
| 46 |
|
|
@$(MAKE) -C libc shared
|
| 47 |
|
|
@$(MAKE) -C ldso shared
|
| 48 |
|
|
@$(MAKE) -C libcrypt shared
|
| 49 |
|
|
@$(MAKE) -C libresolv shared
|
| 50 |
|
|
@$(MAKE) -C libnsl shared
|
| 51 |
|
|
@$(MAKE) -C libutil shared
|
| 52 |
|
|
@$(MAKE) -C libm shared
|
| 53 |
|
|
@$(MAKE) -C libpthread shared
|
| 54 |
|
|
ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
|
| 55 |
|
|
@$(MAKE) -C libintl shared
|
| 56 |
|
|
endif
|
| 57 |
|
|
else
|
| 58 |
|
|
ifeq ($(SHARED_TARGET),)
|
| 59 |
|
|
@echo
|
| 60 |
|
|
@echo Not building shared libraries...
|
| 61 |
|
|
@echo
|
| 62 |
|
|
endif
|
| 63 |
|
|
endif
|
| 64 |
|
|
|
| 65 |
|
|
ifneq ($(SHARED_TARGET),)
|
| 66 |
|
|
|
| 67 |
|
|
lib/main.o: $(ROOTDIR)/lib/libc/main.c
|
| 68 |
|
|
$(CC) $(CFLAGS) $(ARCH_CFLAGS) -c -o $@ $(ROOTDIR)/lib/libc/main.c
|
| 69 |
|
|
|
| 70 |
|
|
bogus $(SHARED_TARGET): lib/libc.a lib/main.o Makefile
|
| 71 |
|
|
make -C $(ROOTDIR) relink
|
| 72 |
|
|
$(CC) -nostartfiles -o $(SHARED_TARGET) $(ARCH_CFLAGS) -Wl,-elf2flt -nostdlib \
|
| 73 |
|
|
-Wl,-shared-lib-id,${LIBID} \
|
| 74 |
|
|
lib/main.o \
|
| 75 |
|
|
-Wl,--whole-archive,lib/libc.a,-lgcc,--no-whole-archive
|
| 76 |
|
|
$(OBJCOPY) -L _GLOBAL_OFFSET_TABLE_ -L main -L __main -L _start \
|
| 77 |
|
|
-L __uClibc_main -L __uClibc_start_main -L lib_main \
|
| 78 |
|
|
-L _exit_dummy_ref \
|
| 79 |
|
|
-L __do_global_dtors -L __do_global_ctors \
|
| 80 |
|
|
-L __CTOR_LIST__ -L __DTOR_LIST__ \
|
| 81 |
|
|
-L _current_shared_library_a5_offset_ \
|
| 82 |
|
|
$(SHARED_TARGET).gdb
|
| 83 |
|
|
$(LN) -sf $(SHARED_TARGET).gdb .
|
| 84 |
|
|
endif
|
| 85 |
|
|
|
| 86 |
|
|
finished: shared
|
| 87 |
|
|
@echo
|
| 88 |
|
|
@echo Finally finished compiling...
|
| 89 |
|
|
@echo
|
| 90 |
|
|
|
| 91 |
|
|
#
|
| 92 |
|
|
# Target for uClinux distro
|
| 93 |
|
|
#
|
| 94 |
|
|
.PHONY: romfs
|
| 95 |
|
|
romfs:
|
| 96 |
|
|
@if [ "$(CONFIG_BINFMT_SHARED_FLAT)" = "y" ]; then \
|
| 97 |
|
|
[ -e $(ROMFSDIR)/lib ] || $(INSTALL) -d $(ROMFSDIR)/lib; \
|
| 98 |
|
|
$(ROMFSINST) $(SHARED_TARGET) /lib/lib$(LIBID).so; \
|
| 99 |
|
|
fi
|
| 100 |
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
| 101 |
|
|
$(INSTALL) -d $(ROMFSDIR)/lib
|
| 102 |
|
|
$(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
|
| 103 |
|
|
$(ROMFSDIR)/lib
|
| 104 |
|
|
cp -fa lib/*.so.* $(ROMFSDIR)/lib/.
|
| 105 |
|
|
@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
|
| 106 |
|
|
set -x -e; \
|
| 107 |
|
|
$(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
|
| 108 |
|
|
$(ROMFSDIR)/lib; \
|
| 109 |
|
|
$(ROMFSINST) -s \
|
| 110 |
|
|
/lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
|
| 111 |
|
|
/lib/ld-linux.so.2; \
|
| 112 |
|
|
fi;
|
| 113 |
|
|
endif
|
| 114 |
|
|
|
| 115 |
|
|
include/bits/uClibc_config.h: .config
|
| 116 |
|
|
@if [ ! -x ./extra/config/conf ] ; then \
|
| 117 |
|
|
make -C extra/config conf; \
|
| 118 |
|
|
fi;
|
| 119 |
|
|
$(RM) -r include/bits
|
| 120 |
|
|
$(INSTALL) -d include/bits
|
| 121 |
|
|
@./extra/config/conf -o extra/Configs/Config.in
|
| 122 |
|
|
|
| 123 |
|
|
headers: include/bits/uClibc_config.h
|
| 124 |
|
|
ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
|
| 125 |
|
|
@set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH)
|
| 126 |
|
|
else
|
| 127 |
|
|
@set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) -n
|
| 128 |
|
|
endif
|
| 129 |
|
|
@cd include/bits; \
|
| 130 |
|
|
set -e; \
|
| 131 |
|
|
for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
|
| 132 |
|
|
$(LN) -fs $$i .; \
|
| 133 |
|
|
done; \
|
| 134 |
|
|
if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits ] ; then \
|
| 135 |
|
|
for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/bits/*.h` ; do \
|
| 136 |
|
|
$(LN) -fs $$i .; \
|
| 137 |
|
|
done; \
|
| 138 |
|
|
fi
|
| 139 |
|
|
@cd include/sys; \
|
| 140 |
|
|
set -e; \
|
| 141 |
|
|
for i in `ls ../../libc/sysdeps/linux/common/sys/*.h` ; do \
|
| 142 |
|
|
$(LN) -fs $$i .; \
|
| 143 |
|
|
done; \
|
| 144 |
|
|
if [ -d ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
|
| 145 |
|
|
for i in `ls ../../libc/sysdeps/linux/$(TARGET_ARCH)/sys/*.h` ; do \
|
| 146 |
|
|
$(LN) -fs $$i .; \
|
| 147 |
|
|
done; \
|
| 148 |
|
|
fi
|
| 149 |
|
|
@cd $(TOPDIR); \
|
| 150 |
|
|
set -x -e; \
|
| 151 |
|
|
TOPDIR=. CC="$(CC)" /bin/sh extra/scripts/gen_bits_syscall_h.sh > include/bits/sysnum.h.new; \
|
| 152 |
|
|
if cmp include/bits/sysnum.h include/bits/sysnum.h.new >/dev/null 2>&1; then \
|
| 153 |
|
|
$(RM) include/bits/sysnum.h.new; \
|
| 154 |
|
|
else \
|
| 155 |
|
|
mv -f include/bits/sysnum.h.new include/bits/sysnum.h; \
|
| 156 |
|
|
fi
|
| 157 |
|
|
$(MAKE) -C libc/sysdeps/linux/common headers
|
| 158 |
|
|
$(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) headers
|
| 159 |
|
|
|
| 160 |
|
|
# Command used to download source code
|
| 161 |
|
|
WGET:=wget --passive-ftp
|
| 162 |
|
|
|
| 163 |
|
|
LOCALE_DATA_FILENAME:=uClibc-locale-030818.tgz
|
| 164 |
|
|
|
| 165 |
|
|
pregen: headers
|
| 166 |
|
|
ifeq ($(strip $(UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA)),y)
|
| 167 |
|
|
(cd extra/locale; \
|
| 168 |
|
|
if [ ! -f $(LOCALE_DATA_FILENAME) ] ; then \
|
| 169 |
|
|
$(WGET) http://www.uclibc.org/downloads/$(LOCALE_DATA_FILENAME) ; \
|
| 170 |
|
|
fi );
|
| 171 |
|
|
endif
|
| 172 |
|
|
ifeq ($(strip $(UCLIBC_PREGENERATED_LOCALE_DATA)),y)
|
| 173 |
|
|
(cd extra/locale; zcat $(LOCALE_DATA_FILENAME) | tar -xvf -)
|
| 174 |
|
|
make -C extra/locale pregen
|
| 175 |
|
|
endif
|
| 176 |
|
|
|
| 177 |
|
|
|
| 178 |
|
|
subdirs: $(patsubst %, _dir_%, $(DIRS))
|
| 179 |
|
|
|
| 180 |
|
|
$(patsubst %, _dir_%, $(DIRS)) : dummy
|
| 181 |
|
|
$(MAKE) -C $(patsubst _dir_%, %, $@)
|
| 182 |
|
|
|
| 183 |
|
|
tags:
|
| 184 |
|
|
ctags -R
|
| 185 |
|
|
|
| 186 |
|
|
install: install_runtime install_dev finished2
|
| 187 |
|
|
|
| 188 |
|
|
|
| 189 |
|
|
# Installs header files and development library links.
|
| 190 |
|
|
install_dev:
|
| 191 |
|
|
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)lib
|
| 192 |
|
|
$(INSTALL) -d $(PREFIX)$(DEVEL_PREFIX)include
|
| 193 |
|
|
-$(INSTALL) -m 644 lib/*.[ao] $(PREFIX)$(DEVEL_PREFIX)lib/
|
| 194 |
|
|
tar -chf - include | tar -xf - -C $(PREFIX)$(DEVEL_PREFIX);
|
| 195 |
|
|
ifneq ($(strip $(UCLIBC_HAS_FLOATS)),y)
|
| 196 |
|
|
# Remove floating point related headers since float support is disabled.
|
| 197 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/complex.h
|
| 198 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/fpu_control.h
|
| 199 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/ieee754.h
|
| 200 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/math.h
|
| 201 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/tgmath.h
|
| 202 |
|
|
endif
|
| 203 |
|
|
ifneq ($(strip $(UCLIBC_HAS_WCHAR)),y)
|
| 204 |
|
|
# Remove wide char headers since wide char support is disabled.
|
| 205 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/wctype.h
|
| 206 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/wchar.h
|
| 207 |
|
|
endif
|
| 208 |
|
|
ifneq ($(strip $(UCLIBC_HAS_LOCALE)),y)
|
| 209 |
|
|
# Remove iconv header since locale support is disabled.
|
| 210 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/iconv.h
|
| 211 |
|
|
endif
|
| 212 |
|
|
ifneq ($(strip $(UCLIBC_HAS_GLIBC_CUSTOM_PRINTF)),y)
|
| 213 |
|
|
# Remove printf header since custom print specifier support is disabled.
|
| 214 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/printf.h
|
| 215 |
|
|
endif
|
| 216 |
|
|
ifneq ($(strip $(UCLIBC_HAS_XLOCALE)),y)
|
| 217 |
|
|
# Remove xlocale header since extended locale support is disabled.
|
| 218 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/xlocale.h
|
| 219 |
|
|
endif
|
| 220 |
|
|
ifneq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
|
| 221 |
|
|
# Remove libintl header since gettext support is disabled.
|
| 222 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/libintl.h
|
| 223 |
|
|
endif
|
| 224 |
|
|
ifneq ($(strip $(UCLIBC_HAS_REGEX)),y)
|
| 225 |
|
|
# Remove regex headers since regex support is disabled.
|
| 226 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/regex.h
|
| 227 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/regexp.h
|
| 228 |
|
|
endif
|
| 229 |
|
|
ifneq ($(strip $(UCLIBC_HAS_WORDEXP)),y)
|
| 230 |
|
|
# Remove wordexp header since wordexp support is disabled.
|
| 231 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/wordexp.h
|
| 232 |
|
|
endif
|
| 233 |
|
|
ifneq ($(strip $(UCLIBC_HAS_FTW)),y)
|
| 234 |
|
|
# Remove ftw header since ftw support is disabled.
|
| 235 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/ftw.h
|
| 236 |
|
|
endif
|
| 237 |
|
|
ifneq ($(strip $(UCLIBC_HAS_GLOB)),y)
|
| 238 |
|
|
# Remove glob header since glob support is disabled.
|
| 239 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/glob.h
|
| 240 |
|
|
endif
|
| 241 |
|
|
ifneq ($(strip $(UCLIBC_HAS_GNU_GETOPT)),y)
|
| 242 |
|
|
# Remove getopt header since gnu getopt support is disabled.
|
| 243 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/getopt.h
|
| 244 |
|
|
endif
|
| 245 |
|
|
ifneq ($(strip $(HAS_SHADOW)),y)
|
| 246 |
|
|
# Remove getopt header since shadow password support is disabled.
|
| 247 |
|
|
$(RM) $(PREFIX)$(DEVEL_PREFIX)include/shadow.h
|
| 248 |
|
|
endif
|
| 249 |
|
|
-@for i in `find $(PREFIX)$(DEVEL_PREFIX) -type d` ; do \
|
| 250 |
|
|
chmod 755 $$i; chmod 644 $$i/*.h > /dev/null 2>&1; \
|
| 251 |
|
|
done;
|
| 252 |
|
|
-find $(PREFIX)$(DEVEL_PREFIX) -name CVS | xargs $(RM) -r;
|
| 253 |
|
|
-chown -R `id | sed 's/^uid=\([0-9]*\).*gid=\([0-9]*\).*$$/\1.\2/'` $(PREFIX)$(DEVEL_PREFIX)
|
| 254 |
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
| 255 |
|
|
for i in `find lib/ -type l -name 'lib[a-zA-Z]*.so' | \
|
| 256 |
|
|
sed -e 's/lib\///'` ; do \
|
| 257 |
|
|
$(LN) -sf $(RUNTIME_PREFIX)lib/$$i.$(MAJOR_VERSION) \
|
| 258 |
|
|
$(PREFIX)$(DEVEL_PREFIX)lib/$$i; \
|
| 259 |
|
|
done;
|
| 260 |
|
|
ifeq ($(strip $(PTHREADS_DEBUG_SUPPORT)),y)
|
| 261 |
|
|
ln -sf $(RUNTIME_PREFIX)lib/libthread_db.so.1 \
|
| 262 |
|
|
$(PREFIX)$(DEVEL_PREFIX)lib/libthread_db.so
|
| 263 |
|
|
endif
|
| 264 |
|
|
# # If we build shared libraries then the static libs are PIC...
|
| 265 |
|
|
# # Make _pic.a symlinks to make mklibs.py and similar tools happy.
|
| 266 |
|
|
for i in `find lib/ -type f -name '*.a' | sed -e 's/lib\///'` ; do \
|
| 267 |
|
|
$(LN) -sf $$i $(PREFIX)$(DEVEL_PREFIX)lib/`echo $$i \
|
| 268 |
|
|
| sed -e 's/\.a$$/_pic.a/'`; \
|
| 269 |
|
|
done;
|
| 270 |
|
|
endif
|
| 271 |
|
|
|
| 272 |
|
|
|
| 273 |
|
|
# Installs run-time libraries and helper apps onto the host system
|
| 274 |
|
|
# allowing cross development. If you want to deploy to a target
|
| 275 |
|
|
# system, use the "install_target" target instead...
|
| 276 |
|
|
install_runtime:
|
| 277 |
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
| 278 |
|
|
$(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)lib
|
| 279 |
|
|
$(INSTALL) -m 644 lib/lib*-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
|
| 280 |
|
|
$(PREFIX)$(RUNTIME_PREFIX)lib
|
| 281 |
|
|
cp -fa lib/*.so.* $(PREFIX)$(RUNTIME_PREFIX)lib
|
| 282 |
|
|
@if [ -x lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so ] ; then \
|
| 283 |
|
|
set -x -e; \
|
| 284 |
|
|
$(INSTALL) -m 755 lib/ld-uClibc-$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL).so \
|
| 285 |
|
|
$(PREFIX)$(RUNTIME_PREFIX)lib; \
|
| 286 |
|
|
fi;
|
| 287 |
|
|
endif
|
| 288 |
|
|
|
| 289 |
|
|
.PHONY: utils
|
| 290 |
|
|
ifeq ($(strip $(HAVE_SHARED)),y)
|
| 291 |
|
|
utils:
|
| 292 |
|
|
$(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils
|
| 293 |
|
|
else
|
| 294 |
|
|
utils: dummy
|
| 295 |
|
|
endif
|
| 296 |
|
|
|
| 297 |
|
|
install_utils: utils
|
| 298 |
|
|
$(MAKE) CROSS=$(CROSS) CC=$(CC) -C utils install
|
| 299 |
|
|
#ifeq ($(strip $(UCLIBC_HAS_LOCALE)),y)
|
| 300 |
|
|
# @$(MAKE) -C libc/misc/wchar iconv.target
|
| 301 |
|
|
# $(INSTALL) -d $(PREFIX)$(RUNTIME_PREFIX)/usr/bin;
|
| 302 |
|
|
# $(INSTALL) -m 755 libc/misc/wchar/iconv.target $(PREFIX)$(RUNTIME_PREFIX)/usr/bin/iconv
|
| 303 |
|
|
#endif
|
| 304 |
|
|
|
| 305 |
|
|
finished2:
|
| 306 |
|
|
@echo
|
| 307 |
|
|
@echo Finished installing...
|
| 308 |
|
|
@echo
|
| 309 |
|
|
|
| 310 |
|
|
else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
|
| 311 |
|
|
|
| 312 |
|
|
all: menuconfig
|
| 313 |
|
|
|
| 314 |
|
|
# configuration
|
| 315 |
|
|
# ---------------------------------------------------------------------------
|
| 316 |
|
|
extra/config/conf:
|
| 317 |
|
|
make -C extra/config conf
|
| 318 |
|
|
|
| 319 |
|
|
extra/config/mconf:
|
| 320 |
|
|
make -C extra/config ncurses mconf
|
| 321 |
|
|
|
| 322 |
|
|
menuconfig: extra/config/mconf
|
| 323 |
|
|
$(RM) -r include/bits
|
| 324 |
|
|
$(INSTALL) -d include/bits
|
| 325 |
|
|
@./extra/config/mconf extra/Configs/Config.in
|
| 326 |
|
|
|
| 327 |
|
|
config: extra/config/conf
|
| 328 |
|
|
$(RM) -r include/bits
|
| 329 |
|
|
$(INSTALL) -d include/bits
|
| 330 |
|
|
@./extra/config/conf extra/Configs/Config.in
|
| 331 |
|
|
|
| 332 |
|
|
oldconfig: extra/config/conf
|
| 333 |
|
|
$(RM) -r include/bits
|
| 334 |
|
|
$(INSTALL) -d include/bits
|
| 335 |
|
|
@./extra/config/conf -o extra/Configs/Config.in
|
| 336 |
|
|
|
| 337 |
|
|
randconfig: extra/config/conf
|
| 338 |
|
|
$(RM) -r include/bits
|
| 339 |
|
|
$(INSTALL) -d include/bits
|
| 340 |
|
|
@./extra/config/conf -r extra/Configs/Config.in
|
| 341 |
|
|
|
| 342 |
|
|
allyesconfig: extra/config/conf
|
| 343 |
|
|
$(RM) -r include/bits
|
| 344 |
|
|
$(INSTALL) -d include/bits
|
| 345 |
|
|
@./extra/config/conf -y extra/Configs/Config.in
|
| 346 |
|
|
|
| 347 |
|
|
allnoconfig: extra/config/conf
|
| 348 |
|
|
$(RM) -r include/bits
|
| 349 |
|
|
$(INSTALL) -d include/bits
|
| 350 |
|
|
@./extra/config/conf -n extra/Configs/Config.in
|
| 351 |
|
|
|
| 352 |
|
|
defconfig: extra/config/conf
|
| 353 |
|
|
$(RM) -r include/bits
|
| 354 |
|
|
$(INSTALL) -d include/bits
|
| 355 |
|
|
@./extra/config/conf -d extra/Configs/Config.in
|
| 356 |
|
|
|
| 357 |
|
|
|
| 358 |
|
|
clean:
|
| 359 |
|
|
- find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec $(RM) {} \;
|
| 360 |
|
|
@$(RM) -r tmp lib include/bits libc/tmp _install
|
| 361 |
|
|
$(MAKE) -C test clean
|
| 362 |
|
|
$(MAKE) -C ldso clean
|
| 363 |
|
|
$(MAKE) -C libc/misc/internals clean
|
| 364 |
|
|
$(MAKE) -C libc/misc/wchar clean
|
| 365 |
|
|
$(MAKE) -C libc/unistd clean
|
| 366 |
|
|
$(MAKE) -C libc/sysdeps/linux/common clean
|
| 367 |
|
|
$(MAKE) -C extra/locale clean
|
| 368 |
|
|
@set -e; \
|
| 369 |
|
|
for i in `(cd $(TOPDIR)/libc/sysdeps/linux/common/sys; ls *.h)` ; do \
|
| 370 |
|
|
$(RM) include/sys/$$i; \
|
| 371 |
|
|
done; \
|
| 372 |
|
|
if [ -d libc/sysdeps/linux/$(TARGET_ARCH)/sys ] ; then \
|
| 373 |
|
|
for i in `(cd libc/sysdeps/linux/$(TARGET_ARCH)/sys; ls *.h)` ; do \
|
| 374 |
|
|
$(RM) include/sys/$$i; \
|
| 375 |
|
|
done; \
|
| 376 |
|
|
fi;
|
| 377 |
|
|
@$(RM) include/linux include/scsi include/asm*
|
| 378 |
|
|
@if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
|
| 379 |
|
|
$(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
|
| 380 |
|
|
fi;
|
| 381 |
|
|
|
| 382 |
|
|
distclean: clean
|
| 383 |
|
|
$(RM) .config .config.old .config.cmd
|
| 384 |
|
|
$(MAKE) -C extra clean
|
| 385 |
|
|
|
| 386 |
|
|
release: distclean
|
| 387 |
|
|
cd ..; \
|
| 388 |
|
|
$(RM) -r uClibc-$(VERSION); \
|
| 389 |
|
|
cp -fa uClibc uClibc-$(VERSION); \
|
| 390 |
|
|
find uClibc-$(VERSION)/ -type f \
|
| 391 |
|
|
-name .\#* -exec $(RM) -r {} \; ; \
|
| 392 |
|
|
find uClibc-$(VERSION)/ -type d \
|
| 393 |
|
|
-name CVS -exec $(RM) -r {} \; ; \
|
| 394 |
|
|
\
|
| 395 |
|
|
tar -cvzf uClibc-$(VERSION).tar.gz uClibc-$(VERSION)/;
|
| 396 |
|
|
|
| 397 |
|
|
endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
|
| 398 |
|
|
|
| 399 |
|
|
.PHONY: dummy subdirs release distclean clean config oldconfig menuconfig
|
| 400 |
|
|
|
| 401 |
|
|
|