Makefile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Makefile for uClibc
  2. #
  3. # Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. #
  5. # This program is free software; you can redistribute it and/or modify it under
  6. # the terms of the GNU Library General Public License as published by the Free
  7. # Software Foundation; either version 2 of the License, or (at your option) any
  8. # later version.
  9. #
  10. # This program is distributed in the hope that it will be useful, but WITHOUT
  11. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  12. # FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Library General Public License
  16. # along with this program; if not, write to the Free Software Foundation, Inc.,
  17. # 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. TOPDIR=../
  19. include $(TOPDIR)Rules.mak
  20. DIRS = ldso libdl
  21. all: ldso libdl
  22. ifeq ($(strip $(BUILD_UCLIBC_LDSO)),y)
  23. ldso: headers
  24. $(MAKE) -C ldso
  25. libdl: ldso headers
  26. $(MAKE) -C libdl
  27. shared: libdl
  28. $(MAKE) -C libdl shared
  29. else
  30. ldso libdl shared:
  31. echo "Skipping $@ target"
  32. endif
  33. LN_HEADERS := $(patsubst %, include/%, elf.h)
  34. LN_ARCH_HEADERS := $(patsubst %, include/%, dl-startup.h dl-syscalls.h dl-sysdep.h dl-debug.h)
  35. HEADERS := $(LN_HEADERS) $(LN_ARCH_HEADERS) include/dl-progname.h
  36. headers: $(HEADERS)
  37. $(LN_HEADERS):
  38. $(LN) -fs $(TOPDIR)../$@ $@
  39. $(LN_ARCH_HEADERS):
  40. $(LN) -fs ../ldso/$(TARGET_ARCH)/$(patsubst include/%,%,$@) $@
  41. include/dl-progname.h:
  42. echo '#include "$(TARGET_ARCH)/elfinterp.c"' \
  43. > include/dl-progname.h
  44. clean:
  45. set -e ; for d in $(DIRS) ; do $(MAKE) -C $$d $@ ; done
  46. -find . -name '*~' | xargs $(RM)
  47. $(RM) $(HEADERS)