Let the user specify CPPFLAGS
This complements the work done in d4928ed, allowing the user to specify
the preprocessor flags with the CPPFLAGS environment variable. This is
useful for example to specify preprocessor macros with -D.
CFLAGS could be used instead, but CPPFLAGS is more correct and is expected
to be honored in some cases. For example, the helper scripts to build
Debian packages make use of CPPFLAGS, but the variable is currently
being ignored unless manually appended to CFLAGS.
			
			
This commit is contained in:
		
				
					committed by
					
						 Hiltjo Posthuma
						Hiltjo Posthuma
					
				
			
			
				
	
			
			
			
						parent
						
							e23acb9188
						
					
				
				
					commit
					16d98738e7
				
			| @@ -21,8 +21,8 @@ LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \ | |||||||
|        `$(PKG_CONFIG) --libs freetype2` |        `$(PKG_CONFIG) --libs freetype2` | ||||||
|  |  | ||||||
| # flags | # flags | ||||||
| CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 | STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 | ||||||
| STCFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS) | STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS) | ||||||
| STLDFLAGS = $(LIBS) $(LDFLAGS) | STLDFLAGS = $(LIBS) $(LDFLAGS) | ||||||
|  |  | ||||||
| # OpenBSD: | # OpenBSD: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user