Skip to content

Commit 275cc6b

Browse files
committed
Cleanup after the las commit
1 parent 544ad15 commit 275cc6b

File tree

10 files changed

+56
-0
lines changed

10 files changed

+56
-0
lines changed

Makefile

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
TARGETS = \
2+
samd10 \
3+
samd11 \
4+
samd20 \
5+
samd21 \
6+
samc21 \
7+
samc21n \
8+
saml10 \
9+
saml11 \
10+
saml21a \
11+
saml21b \
12+
saml22a \
13+
same54 \
14+
samg55 \
15+
same70 \
16+
samv71 \
17+
sam4s \
18+
19+
.PHONY: $(TARGETS)
20+
21+
all: $(TARGETS)
22+
23+
$(TARGETS):
24+
-rm -fr $@/make/build
25+
make -C $@/make/ clean all
26+
make -C $@/make/ clean
27+
-rm -fr $@/make/build
28+
29+

samc21/startup_samc21.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "samc21.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

samc21n/startup_samc21n.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "samc21.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

samd10/startup_samd10.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "samd10.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

samd11/startup_samd11.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "samd11.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

samd20/startup_samd20.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "samd20.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

samd21/startup_samd21.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "samd21.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

saml21a/startup_saml21.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "saml21.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

saml21b/startup_saml21.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "saml21.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

saml22a/startup_saml22.c

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
* POSSIBILITY OF SUCH DAMAGE.
2727
*/
2828

29+
//-----------------------------------------------------------------------------
30+
#include "saml22.h"
31+
2932
//-----------------------------------------------------------------------------
3033
#define DUMMY __attribute__ ((weak, alias ("irq_handler_dummy")))
3134

0 commit comments

Comments
 (0)