12345678910111213141516171819202122232425262728293031323334353637 |
- all :
- make -C ./web
- # apps modules test_apps
- clean : clean_apps clean_modules clean_test_apps
- apps :
- #make -C ./web
- #make -C ./bmc_server
- #CFLAGS := -Os -mcpu=cortex-m3 -mthumb
- #LDFLAGS := -mcpu=cortex-m3 -mthumb -L$(INSTALL_ROOT)/A2F/root/usr/lib
- #CC = $(CROSS_COMPILE_APPS)gcc
- #SRC = stm32f429.c
- #CFLAGS += -I$(INSTALL_ROOT)/A2F/root/usr/include
- #CFLAGS += ./
- #OBJS = $(SRC:%.c=%.o)
- modules :
- # make -C ./driver/FMC
- # make -C ./driver/test
- # make -C ./driver/Platform
- # make -C ./driver/I2C
- test_apps:
- make -C ./test_app
- clean_apps:
- rm -rf ./bmc_server/*.o
- clean_modules:
- rm -rf ./driver/*.o
- clean_test_apps:
- rm -rf ./test_app/*.o
|