Makefile 655 B

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