Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thirdpin/libopencm3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBuFran <BuFran@seznam.cz>2013-07-07 16:31:05 +0400
committerPiotr Esden-Tempski <piotr@esden.net>2013-07-08 03:22:21 +0400
commit7002bca027a8026bb2a64ac40a9bf7a14a845316 (patch)
treee4a1e93701459af7345e3e2c805b06f7dfbcf55b /Makefile
parentea28feb537e031b1bec2fc1e06f919b519a4bc27 (diff)
[BUILD] move the definition line of yaml files search outside the targets section
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 311ce15b..9affd9e4 100644
--- a/Makefile
+++ b/Makefile
@@ -47,12 +47,12 @@ Q := @
MAKEFLAGS += --no-print-directory
endif
+YAMLFILES := $(shell find . -name 'irq.yaml')
+
all: build
build: lib
-YAMLFILES := $(shell find . -name 'irq.yaml')
-
%.genhdr:
@printf " GENHDR $*\n";
@./scripts/irq2nvic_h ./$*;