Rules.mak 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 = -l
  18. # use '-Os' optimization if available, else use -O2
  19. OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
  20. then echo "-Os"; else echo "-O2" ; fi)
  21. CFLAGS=$(WARNINGS) $(OPTIMIZATION)
  22. ifeq ($(DODEBUG),true)
  23. CFLAGS +=-g
  24. LDFLAGS =-Wl,-warn-common
  25. STRIPTOOL =/bin/true -Since_we_are_debugging
  26. else
  27. CFLAGS +=-fomit-frame-pointer
  28. LDFLAGS =-s -Wl,-warn-common
  29. STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
  30. endif
  31. ifneq ($(DODYNAMIC),true)
  32. LDFLAGS +=--static
  33. endif