Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #
  2. # Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved.
  3. #
  4. # See file CREDITS for list of people who contributed to this
  5. # project.
  6. #
  7. # This program is free software; you can redistribute it and/or modify it
  8. # under the terms and conditions of the GNU General Public License,
  9. # version 2, as published by the Free Software Foundation.
  10. #
  11. # This program is distributed in the hope it will be useful, but WITHOUT
  12. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  14. # more details.
  15. #
  16. include $(TOPDIR)/config.mk
  17. $(shell mkdir -p $(obj)../../nvidia/common)
  18. LIB = $(obj)lib$(BOARD).o
  19. COBJS-y := $(BOARD).o
  20. include ../../nvidia/common/common.mk
  21. COBJS := $(COBJS-y)
  22. SRCS := $(COBJS:.o=.c)
  23. OBJS := $(addprefix $(obj),$(COBJS))
  24. $(LIB): $(obj).depend $(OBJS)
  25. $(call cmd_link_o_target, $(OBJS))
  26. #########################################################################
  27. # defines $(obj).depend target
  28. include $(SRCTREE)/rules.mk
  29. sinclude $(obj).depend
  30. #########################################################################