mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 13:10:34 +00:00
Use AM_CFLAGS instead of CFLAGS.
CFLAGS is meant to be reserved for the user.
This commit is contained in:
parent
f17b1275ea
commit
74a7e07dfc
19 changed files with 19 additions and 19 deletions
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@ @VORBIS_CFLAGS@ @OGG_CFLAGS@
|
AM_CFLAGS= @PREFER_PIC@ @VORBIS_CFLAGS@ @OGG_CFLAGS@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
||||||
plugin_libadd= @plugin_libadd@
|
plugin_libadd= @plugin_libadd@
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
SDL_LIBS = @SDL_LIBS@
|
SDL_LIBS = @SDL_LIBS@
|
||||||
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
plugin_ldflags= @plugin_ldflags@ -avoid-version -module -rpath $(plugindir)
|
||||||
plugin_libadd= @plugin_libadd@
|
plugin_libadd= @plugin_libadd@
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
lib_LTLIBRARIES= libQFgamecode.la
|
lib_LTLIBRARIES= libQFgamecode.la
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
lib_LTLIBRARIES= libQFgib.la
|
lib_LTLIBRARIES= libQFgib.la
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
lib_LTLIBRARIES= libQFimage.la
|
lib_LTLIBRARIES= libQFimage.la
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
SUBDIRS= alias brush sprite
|
SUBDIRS= alias brush sprite
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
check_PROGRAMS=testclip
|
check_PROGRAMS=testclip
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
if BUILD_GL
|
if BUILD_GL
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
if BUILD_GL
|
if BUILD_GL
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
if BUILD_GL
|
if BUILD_GL
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
SUBDIRS= nc nm
|
SUBDIRS= nc nm
|
||||||
CFLAGS+= @PREFER_NON_PIC@
|
AM_CFLAGS= @PREFER_NON_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
noinst_LTLIBRARIES= libnet_chan.la libnet_main.la
|
noinst_LTLIBRARIES= libnet_chan.la libnet_main.la
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_NON_PIC@
|
AM_CFLAGS= @PREFER_NON_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
noinst_LTLIBRARIES= libnc.la
|
noinst_LTLIBRARIES= libnc.la
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_NON_PIC@
|
AM_CFLAGS= @PREFER_NON_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
noinst_LTLIBRARIES= libnm.la
|
noinst_LTLIBRARIES= libnm.la
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
lib_LTLIBRARIES= libQFobject.la
|
lib_LTLIBRARIES= libQFobject.la
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
lib_LTLIBRARIES= libQFruamoko.la
|
lib_LTLIBRARIES= libQFruamoko.la
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
CCASFLAGS+= @PREFER_PIC@
|
CCASFLAGS+= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include $(GLX_CFLAGS)
|
INCLUDES= -I$(top_srcdir)/include $(GLX_CFLAGS)
|
||||||
|
|
||||||
if BUILD_GL
|
if BUILD_GL
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_NON_PIC@
|
AM_CFLAGS= @PREFER_NON_PIC@
|
||||||
CCASFLAGS+= @PREFER_NON_PIC@
|
CCASFLAGS+= @PREFER_NON_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AUTOMAKE_OPTIONS= foreign
|
AUTOMAKE_OPTIONS= foreign
|
||||||
|
|
||||||
CFLAGS+= @PREFER_PIC@
|
AM_CFLAGS= @PREFER_PIC@
|
||||||
INCLUDES= -I$(top_srcdir)/include
|
INCLUDES= -I$(top_srcdir)/include
|
||||||
|
|
||||||
if BUILD_SW32
|
if BUILD_SW32
|
||||||
|
|
Loading…
Reference in a new issue