Makefile 689 B

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