diff options
author | Mark Nunberg <mnunberg@users.noreply.github.com> | 2018-09-26 22:35:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-26 22:35:38 -0400 |
commit | 273fae1deaf2994f83e88c482a439557a68c6a40 (patch) | |
tree | b610a97938b1e4c622ebeb91d9a879e367ab55ec /Makefile | |
parent | fbf2d037e7de6b7b7f9177a2263a6113f99a7ceb (diff) | |
parent | 3bcf286356f0780ff695c73a7dc178c1f970315b (diff) |
Merge pull request #614 from thomaslee/tom_cppflags
Add CPPFLAGS to REAL_CFLAGS
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ CXX:=$(shell sh -c 'type $${CXX%% *} >/dev/null 2>/dev/null && echo $(CXX) || ec OPTIMIZATION?=-O3 WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings DEBUG_FLAGS?= -g -ggdb -REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG_FLAGS) +REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CPPFLAGS) $(CFLAGS) $(WARNINGS) $(DEBUG_FLAGS) REAL_LDFLAGS=$(LDFLAGS) DYLIBSUFFIX=so |