diff options
author | Maximilien Cuony <maximilien@theglu.org> | 2016-06-04 15:28:11 +0200 |
---|---|---|
committer | Maximilien Cuony <maximilien@theglu.org> | 2016-06-04 15:28:11 +0200 |
commit | b47c16bb91991d3cbf004de5b1d5f610a5b2c807 (patch) | |
tree | fb32a704a1dbec46c4ae06a36aaaa574fff9d85c /src/stm32f/Makefile | |
parent | 8a937bc9bcec87816636db9f7fbf11b52ec7e864 (diff) | |
download | glutte-o-matic-b47c16bb91991d3cbf004de5b1d5f610a5b2c807.tar.gz glutte-o-matic-b47c16bb91991d3cbf004de5b1d5f610a5b2c807.tar.bz2 glutte-o-matic-b47c16bb91991d3cbf004de5b1d5f610a5b2c807.zip |
Temperature
Diffstat (limited to 'src/stm32f/Makefile')
-rw-r--r-- | src/stm32f/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stm32f/Makefile b/src/stm32f/Makefile index a26cdbd..29bf265 100644 --- a/src/stm32f/Makefile +++ b/src/stm32f/Makefile @@ -20,7 +20,7 @@ ASOURCES=$(shell find -L $(SRCDIR) -name '*.s') CSOURCES+=$(shell find -L $(SRCDIR) -name '*.c') # Find header directories INC=$(shell find -L . -name '*.h' -exec dirname {} \; | uniq) -INCLUDES=$(INC:%=-I%) -I ../common/includes/ +INCLUDES=$(INC:%=-I%) -I ../common/includes/ -I ./includes/ # Create object list OBJECTS=$(ASOURCES:%.s=%.o) OBJECTS+=$(CSOURCES:%.c=obj/%.o) |