Add chipid table to diplay chip info.
[bertos.git] / boards / sam3x-ek / examples / sam3x-ek_http_server / sam3x-ek_http_server_user.mk
1 #
2 # User makefile.
3 # Edit this file to change compiler options and related stuff.
4 #
5
6 # Programmer interface configuration, see http://dev.bertos.org/wiki/ProgrammerInterface for help
7 sam3x-ek_http_server_PROGRAMMER_TYPE = none
8 sam3x-ek_http_server_PROGRAMMER_PORT = none
9
10 # Files included by the user.
11 sam3x-ek_http_server_USER_CSRC = \
12         $(sam3x-ek_http_server_SRC_PATH)/main.c \
13         bertos/cpu/cortex-m3/drv/dmac_sam3.c \
14         bertos/cpu/cortex-m3/drv/hsmci_sam3.c \
15         bertos/cpu/cortex-m3/io/sam3_chipid.c \
16         #
17
18 # Files included by the user.
19 sam3x-ek_http_server_USER_PCSRC = \
20         #
21
22 # Files included by the user.
23 sam3x-ek_http_server_USER_CPPASRC = \
24         #
25
26 # Files included by the user.
27 sam3x-ek_http_server_USER_CXXSRC = \
28         #
29
30 # Files included by the user.
31 sam3x-ek_http_server_USER_ASRC = \
32         #
33
34 # Flags included by the user.
35 sam3x-ek_http_server_USER_LDFLAGS = \
36         #
37
38 # Flags included by the user.
39 sam3x-ek_http_server_USER_CPPAFLAGS = \
40         #
41
42 # Flags included by the user.
43 # -Wno-cast-qual silences warnings from using lwip constants
44 sam3x-ek_http_server_USER_CPPFLAGS = \
45         -Os \
46         -fno-strict-aliasing \
47         -Wno-cast-qual \
48         -fwrapv \
49         #
50
51 # Silence very annoying lwip warnings
52 lwip_CFLAGS = \
53         -Wno-cast-align \
54         -Wno-cast-qual \
55         -Wno-sign-compare \
56         -Wno-format \
57         -Wno-unused-value \
58         -Wno-conversion \
59         -Wno-missing-noreturn \
60         #