Skip to content

Commit

Permalink
Filter out examples that don't build
Browse files Browse the repository at this point in the history
buils now succeds provided system headers are available
  • Loading branch information
hramrach committed Jun 22, 2016
1 parent ec6e328 commit 5d0914a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ CXXFLAGS=-g -Wall -std=gnu++11
CPPFLAGS=-Ilinux -I.
LDFLAGS=-lstdc++

SOURCES=$(wildcard examples/*/*.ino)
BROKEN=examples/MinimalInterrupt/MinimalInterrupt.ino examples/servo_motor/servo_motor.ino

SOURCES=$(filter-out $(BROKEN), $(wildcard examples/*/*.ino))

all: package examples

Expand Down

0 comments on commit 5d0914a

Please sign in to comment.