|
1 |
| -# -*- mode: makefile -*- |
2 |
| -# The first line sets the emacs major mode to Makefile |
3 |
| - |
4 |
| -################################################################ |
5 |
| -# Use this file to give project-specific definitions of the command |
6 |
| -# line arguments to pass to CBMC tools like goto-cc to build the goto |
7 |
| -# binaries and cbmc to do the property and coverage checking. |
8 |
| -# |
9 |
| -# Use this file to override most default definitions of variables in |
10 |
| -# Makefile.common. |
11 |
| -################################################################ |
12 |
| - |
13 |
| -# Flags to pass to goto-cc for compilation (typically those passed to gcc -c) |
14 |
| -COMPILE_FLAGS += -fPIC |
15 |
| -COMPILE_FLAGS += -std=gnu90 |
16 |
| - |
17 |
| -# Flags to pass to goto-cc for linking (typically those passed to gcc) |
18 |
| -# LINK_FLAGS = |
19 |
| - |
20 |
| -# Preprocessor include paths -I... |
21 |
| -INCLUDES += -I$(SRCDIR)/libraries/standard/http/cbmc/include |
22 |
| -INCLUDES += -I$(SRCDIR)/libraries/standard/http/include |
23 |
| -INCLUDES += -I$(SRCDIR)/libraries/standard/http/src |
24 |
| -INCLUDES += -I$(SRCDIR)/libraries/standard/http/third_party/http_parser |
25 |
| -INCLUDES += -I$(SRCDIR)/demos/logging-stack |
26 |
| -INCLUDES += -I$(SRCDIR)/platform/include |
27 |
| - |
28 |
| -# Preprocessor definitions -D... |
29 |
| -DEFINES += -Dhttp_EXPORTS |
30 |
| - |
31 |
| -# Ensure that all assumptions are sound by checking that "all pointers |
32 |
| -# in pointer primitives are valid or null" |
33 |
| -CHECKFLAGS += --pointer-primitive-check |
| 1 | +# -*- mode: makefile -*- |
| 2 | +# The first line sets the emacs major mode to Makefile |
| 3 | + |
| 4 | +################################################################ |
| 5 | +# Use this file to give project-specific definitions of the command |
| 6 | +# line arguments to pass to CBMC tools like goto-cc to build the goto |
| 7 | +# binaries and cbmc to do the property and coverage checking. |
| 8 | +# |
| 9 | +# Use this file to override most default definitions of variables in |
| 10 | +# Makefile.common. |
| 11 | +################################################################ |
| 12 | + |
| 13 | +# Flags to pass to goto-cc for compilation (typically those passed to gcc -c) |
| 14 | +COMPILE_FLAGS += -fPIC |
| 15 | +COMPILE_FLAGS += -std=gnu90 |
| 16 | + |
| 17 | +# Flags to pass to goto-cc for linking (typically those passed to gcc) |
| 18 | +# LINK_FLAGS = |
| 19 | + |
| 20 | +# Preprocessor include paths -I... |
| 21 | +INCLUDES += -I$(SRCDIR)/cbmc/include |
| 22 | +INCLUDES += -I$(SRCDIR)/source/include |
| 23 | +INCLUDES += -I$(SRCDIR)/source/portable |
| 24 | +INCLUDES += -I$(SRCDIR)/source |
| 25 | +INCLUDES += -I$(SRCDIR)/source/third_party/http_parser |
| 26 | + |
| 27 | +# Preprocessor definitions -D... |
| 28 | +DEFINES += -Dhttp_EXPORTS |
| 29 | + |
| 30 | +# Ensure that all assumptions are sound by checking that "all pointers |
| 31 | +# in pointer primitives are valid or null" |
| 32 | +CHECKFLAGS += --pointer-primitive-check |
0 commit comments