Makefile 654 B

1234567891011121314151617181920212223242526
  1. #
  2. # Copyright (C) 2011 Renesas Electronics Europe Ltd.
  3. #
  4. # This file is released under the terms of GPL v2 and any later version.
  5. # See the file COPYING in the root directory of the source tree for details.
  6. include $(TOPDIR)/config.mk
  7. LIB = lib$(BOARD).o
  8. OBJS := rsk7264.o
  9. SOBJS := lowlevel_init.o
  10. LIB := $(addprefix $(obj),$(LIB))
  11. OBJS := $(addprefix $(obj),$(OBJS))
  12. SOBJS := $(addprefix $(obj),$(SOBJS))
  13. $(LIB): $(obj).depend $(OBJS) $(SOBJS)
  14. $(call cmd_link_o_target, $(OBJS) $(SOBJS))
  15. #########################################################################
  16. # defines $(obj).depend target
  17. include $(SRCTREE)/rules.mk
  18. sinclude $(obj).depend