summaryrefslogblamecommitdiff
path: root/Makefile
blob: 1ea8f09f812fa8424473ababc7ecb0b089ef3d7f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                      
APPLICATION	= uart-test
SRCDIR  	= src/$(APPLICATION)

all: target

world: target

target:
	make -C $(SRCDIR)

flash-target:
	make -C $(SRCDIR) flash-target

clean:
	make -C $(SRCDIR) clean

really-clean:
	make -C $(SRCDIR) really-clean