Makefile 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # Copyright (C) 2007
  3. # Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
  4. #
  5. # Copyright (C) 2007
  6. # Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
  7. #
  8. # Copyright (C) 2007
  9. # Kenati Technologies, Inc.
  10. #
  11. # (C) Copyright 2008
  12. # Mark Jonas <mark.jonas@de.bosch.com>
  13. #
  14. # board/mpr2/Makefile
  15. #
  16. # This program is free software; you can redistribute it and/or
  17. # modify it under the terms of the GNU General Public License as
  18. # published by the Free Software Foundation; either version 2 of
  19. # the License, or (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU General Public License
  27. # along with this program; if not, write to the Free Software
  28. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29. # MA 02111-1307 USA
  30. include $(TOPDIR)/config.mk
  31. LIB = lib$(BOARD).a
  32. OBJS := mpr2.o
  33. SOBJS := lowlevel_init.o
  34. $(LIB): $(OBJS) $(SOBJS)
  35. $(AR) crv $@ $(OBJS) $(SOBJS)
  36. clean:
  37. rm -f $(SOBJS) $(OBJS)
  38. distclean: clean
  39. rm -f $(LIB) core *.bak .depend
  40. #########################################################################
  41. .depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
  42. $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
  43. -include .depend
  44. #########################################################################