Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #
  2. # Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
  3. #
  4. # This program is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU General Public License as
  6. # published by the Free Software Foundation; either version 2 of
  7. # the License, or (at your option) any later version.
  8. #
  9. # This program is distributed "as is" WITHOUT ANY WARRANTY of any
  10. # kind, whether express or implied; without even the implied warranty
  11. # of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. include $(TOPDIR)/config.mk
  15. LIB = $(obj)lib$(SOC).o
  16. SOBJS := lowlevel_init.o
  17. COBJS += clock.o
  18. COBJS += sys_info.o
  19. COBJS += ddr.o
  20. COBJS += emif4.o
  21. COBJS += board.o
  22. SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
  23. OBJS := $(addprefix $(obj),$(COBJS) $(COBJS-y) $(SOBJS))
  24. all: $(obj).depend $(LIB)
  25. $(LIB): $(OBJS)
  26. $(call cmd_link_o_target, $(OBJS))
  27. clean:
  28. rm -f $(SOBJS) $(OBJS)
  29. distclean: clean
  30. rm -f $(LIB) core *.bak .depend
  31. #########################################################################
  32. # defines $(obj).depend target
  33. include $(SRCTREE)/rules.mk
  34. sinclude $(obj).depend
  35. #########################################################################