commit | 89e90d67aa73163b368f0dc42ed78310bda00ac5 | [log] [tgz] |
---|---|---|
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | Sat Jun 02 06:16:02 2001 +0000 |
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | Sat Jun 02 06:16:02 2001 +0000 |
tree | bb7ad7331037051274914dabd6d4231ff396f8f2 | |
parent | f4b33f61fb83f54d3086ef28c34e71a18ade2b9d [diff] [blame] |
Separate CFLAGS and CPPFLAGS. CFLAGS should not contain preprocessor directives, which is the role of CPPFLAGS. Closes SF patch #414991.
diff --git a/Demo/embed/Makefile b/Demo/embed/Makefile index ebc274f..bdb381e 100644 --- a/Demo/embed/Makefile +++ b/Demo/embed/Makefile
@@ -15,7 +15,8 @@ # Compiler flags OPT= -g INCLUDES= -I$(srcdir)/Include -I$(blddir) -CFLAGS= $(OPT) $(INCLUDES) +CFLAGS= $(OPT) +CPPFLAGS= $(INCLUDES) # The Python library LIBPYTHON= $(blddir)/libpython$(VERSION).a