Makefile 686 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. all :
  2. make -C ./test_app
  3. make -C ./goahead-5.1.0
  4. # apps modules test_apps
  5. clean : clean_apps clean_modules clean_test_apps
  6. apps :
  7. #make -C ./web
  8. #make -C ./bmc_server
  9. #CFLAGS := -Os -mcpu=cortex-m3 -mthumb
  10. #LDFLAGS := -mcpu=cortex-m3 -mthumb -L$(INSTALL_ROOT)/A2F/root/usr/lib
  11. #CC = $(CROSS_COMPILE_APPS)gcc
  12. #SRC = stm32f429.c
  13. #CFLAGS += -I$(INSTALL_ROOT)/A2F/root/usr/include
  14. #CFLAGS += ./
  15. #OBJS = $(SRC:%.c=%.o)
  16. modules :
  17. # make -C ./driver/FMC
  18. # make -C ./driver/test
  19. # make -C ./driver/Platform
  20. # make -C ./driver/I2C
  21. test_apps:
  22. make -C ./test_app
  23. clean_apps:
  24. rm -rf ./bmc_server/*.o
  25. clean_modules:
  26. rm -rf ./driver/*.o
  27. clean_test_apps:
  28. rm -rf ./test_app/*.o