Makefile 694 B

123456789101112131415161718192021222324252627282930
  1. ##
  2. # Copyright (C) 2021 Alibaba Group Holding Limited
  3. # Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License version 2 as
  7. # published by the Free Software Foundation.
  8. ##
  9. DIR_TO_ROOT=../..
  10. include $(DIR_TO_ROOT)/build.param
  11. #CFLAGS +=
  12. LIBS += -lhal_common -lhal_platform
  13. OUTPUT_DIR := $(DIR_TO_ROOT)/output/examples/vdec
  14. #PREPARE := lib_camera
  15. TARGET_1 := vdec_demo1
  16. SRCS_1 = vdec_demo1.c
  17. TARGET_ALL := $(TARGET_1)
  18. all: $(TARGET_ALL)
  19. clean:
  20. rm -rf .obj
  21. rm -f $(TARGET_1) $(OUTPUT_DIR)/$(TARGET_1)
  22. include $(DIR_TO_ROOT)/common_target.mk
  23. .PHONY: clean all