Conquering the STM32F4 on the discovery board step-by-step. Commit history is tutorialesque, but not clean of course.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
332 B

.PHONY: all compile clean
all: compile
$(MAKE) -C src flash
compile:
$(MAKE) -C libs/cmsis
$(MAKE) -C libs/STM32F4xx_HAL_Driver/Src
$(MAKE) -C libs/st_usb
$(MAKE) -C src
clean:
$(MAKE) -C src clean
clean-all: clean
$(MAKE) -C libs/cmsis clean
$(MAKE) -C libs/STM32F4xx_HAL_Driver/Src clean
$(MAKE) -C libs/st_usb clean