mirror of https://github.com/g4klx/MMDVM.git
Dont compile STM32F1 stuff for STM32F4 target
This commit is contained in:
parent
a25b634366
commit
12e0f409ca
1
Makefile
1
Makefile
|
@ -47,6 +47,7 @@ else ifdef SystemRoot
|
|||
else
|
||||
ASOURCES=$(shell find . -name '*.s')
|
||||
CSOURCES=$(shell find . -name '*.c')
|
||||
CSOURCES:=$(filter-out $(wildcard ./system_stm32f1xx/*.c), $(CSOURCES))
|
||||
CXXSOURCES=$(shell find . -name '*.cpp')
|
||||
CLEANCMD=rm -f $(OBJECTS) $(BINDIR)/$(BINELF) $(BINDIR)/$(BINHEX) $(BINDIR)/$(BINBIN)
|
||||
MDBIN=mkdir $@
|
||||
|
|
Loading…
Reference in New Issue