Rules.mak 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Rules.make for uClibc test apps.
  2. #
  3. # Copyright (C) 2001 by Lineo, inc.
  4. #
  5. #
  6. #Note: This does not read the top level Rules.mak file
  7. #
  8. include $(TESTDIR)Config
  9. NATIVE_ARCH = $(shell uname -m | sed -e 's/i.86/i386/' -e 's/sparc.*/sparc/' \
  10. -e 's/arm.*/arm/g' -e 's/m68k.*/m68k/')
  11. # If you are running a cross compiler, you may want to set this
  12. # to something more interesting...
  13. TESTCC = ../$(TESTDIR)extra/gcc-uClibc/$(NATIVE_ARCH)-uclibc-gcc
  14. CC = gcc
  15. STRIPTOOL=strip
  16. # Check if 'ls -sh' works or not
  17. LSFLAGS = $(shell if ls -sh >/dev/null 2>&1; \
  18. then echo "-sh"; else echo "-s" ; fi)
  19. # use '-Os' optimization if available, else use -O2
  20. OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
  21. then echo "-Os"; else echo "-O2" ; fi)
  22. CFLAGS=$(WARNINGS) $(OPTIMIZATION)
  23. ifeq ($(DODEBUG),true)
  24. CFLAGS +=-g
  25. LDFLAGS =-Wl,-warn-common
  26. STRIPTOOL =/bin/true -Since_we_are_debugging
  27. else
  28. CFLAGS +=-fomit-frame-pointer
  29. LDFLAGS =-s -Wl,-warn-common
  30. STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
  31. endif
  32. ifneq ($(DODYNAMIC),true)
  33. LDFLAGS +=--static
  34. endif