forked from bskari/pi-rc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (28 loc) · 903 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
31
32
33
# I guess that requiring people to instal Scons is silly, so I'll add this
# Makefile.
UNAME := $(shell uname -m)
WARNING_FLAGS := -Wall -Wextra -Wshadow -Wswitch-enum \
-Wswitch-default
C_WARNING_FLAGS := -Wmissing-prototypes -Wmissing-declarations \
-Wstrict-prototypes
ifeq ($(UNAME), armv6l)
override CFLAGS = ${WARNING_FLAGS} ${C_WARNING_FLAGS} -DRASPI=1
else ifeq ($(UNAME), armv7l)
override CFLAGS = ${WARNING_FLAGS} ${C_WARNING_FLAGS} -DRASPI=2
else ifeq ($(UNAME), x86_64)
# Options for testing on non-Pi hardware
override CFLAGS = ${WARNING_FLAGS} ${C_WARNING_FLAGS} -g -Wno-pointer-to-int-cast \
-Wno-unused-function -DTEST_COMPILATION=1
else
override CFLAGS = ${WARNING_FLAGS} ${C_WARNING_FLAGS}
endif
LDLIBS := -lm
all: pi_bose pi_pcm
pi_bose: pi_bose.o mailbox.o
pi_pcm: pi_pcm.o mailbox.o
.PHONY: clean
clean:
rm -f *.o
rm -f *.pyc
rm -f pi_pcm
rm -f pi_bose