Add simple http server demo example.
[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         #
16
17 # Files included by the user.
18 sam3x-ek_http_server_USER_PCSRC = \
19         #
20
21 # Files included by the user.
22 sam3x-ek_http_server_USER_CPPASRC = \
23         #
24
25 # Files included by the user.
26 sam3x-ek_http_server_USER_CXXSRC = \
27         #
28
29 # Files included by the user.
30 sam3x-ek_http_server_USER_ASRC = \
31         #
32
33 # Flags included by the user.
34 sam3x-ek_http_server_USER_LDFLAGS = \
35         #
36
37 # Flags included by the user.
38 sam3x-ek_http_server_USER_CPPAFLAGS = \
39         #
40
41 # Flags included by the user.
42 # -Wno-cast-qual silences warnings from using lwip constants
43 sam3x-ek_http_server_USER_CPPFLAGS = \
44         -Os \
45         -fno-strict-aliasing \
46         -Wno-cast-qual \
47         -fwrapv \
48         #
49
50 # Silence very annoying lwip warnings
51 lwip_CFLAGS = \
52         -Wno-cast-align \
53         -Wno-cast-qual \
54         -Wno-sign-compare \
55         -Wno-format \
56         -Wno-unused-value \
57         -Wno-conversion \
58         -Wno-missing-noreturn \
59         #