Makerules.gcc 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. #
  2. # Copyright (C) 2001-2006 by egnite Software GmbH
  3. # Copyright (C) 2009 by egnite GmbH
  4. #
  5. # All rights reserved.
  6. #
  7. # Redistribution and use in source and binary forms, with or without
  8. # modification, are permitted provided that the following conditions
  9. # are met:
  10. #
  11. # 1. Redistributions of source code must retain the above copyright
  12. # notice, this list of conditions and the following disclaimer.
  13. # 2. Redistributions in binary form must reproduce the above copyright
  14. # notice, this list of conditions and the following disclaimer in the
  15. # documentation and/or other materials provided with the distribution.
  16. # 3. Neither the name of the copyright holders nor the names of
  17. # contributors may be used to endorse or promote products derived
  18. # from this software without specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  23. # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  24. # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  26. # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  27. # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
  28. # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  29. # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. # SUCH DAMAGE.
  32. #
  33. # For additional information see http://www.ethernut.de/
  34. #
  35. # $Id: Makerules.gcc 5472 2013-12-06 00:16:28Z olereinhardt $
  36. #
  37. include $(top_srcdir)/Makerules.all
  38. CPPFLAGS += -MD -MP
  39. %.o : %.c
  40. $(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
  41. %.o : %.cc
  42. $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o $@ $<
  43. %.o : %.S
  44. $(AS) -c $(CPPFLAGS) $(ASFLAGS) -o $@ $<
  45. %.a: $(OBJS)
  46. $(AR) $(ARFLAGS) $@ $?
  47. # No idea why the pattern rule above doesn't work on some
  48. # make versions (No rule to make...).
  49. # This little hack seems to fix it:
  50. $(PROJ).a: $(OBJS)
  51. cleancc:
  52. -rm -f $(OBJS) $(SRCS:%.c=%.d) $(OBJ1:.o=.d)
  53. -rm -f $(OBJS:.o=.lst) $(OBJ1:.o=.lst) $(OBJ2:.o=.lst) $(OBJ3:.o=.lst) $(OBJ4:.o=.lst) $(OBJ5:.o=.lst)
  54. ifndef NODEPS
  55. # http://www.microhowto.info/howto/automatically_generate_makefile_dependencies.html
  56. -include $(SRCS:%.c=%.d) $(OBJ1:.o=.d)
  57. endif