-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
30 lines (23 loc) · 831 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#####################################################################################
#
# Raspberry Pi bare-metal master make
#
#####################################################################################
#------------------------------------------------------------------------------------
# Build all targets
#------------------------------------------------------------------------------------
all: libraries sample
#------------------------------------------------------------------------------------
# Builds
#------------------------------------------------------------------------------------
.PHONY: clean sample libgpio
vga:
cd ./vga-rpi && make vga
sample:
cd ./samples && make uart1
libraries:
cd ./lib && make all
clean:
cd ./vga-rpi && make clean
cd ./samples && make clean
cd ./lib && make clean