a452d8d36a
AM_CPPFLAGS is for flags passed to the preprocessor, such as defines and includes. AM_CFLAGS is for flags affecting the compiler, such as debug and optimization settings. INCLUDES is an obsolete name. Users can pass INCLUDES and break compilation. AM_CPPFLAGS is more explicit that the flags come from Automake and should not be overridden.
23 lines
298 B
Makefile
23 lines
298 B
Makefile
EXTRA_DIST = xrdpvr.h
|
|
|
|
EXTRA_DEFINES =
|
|
EXTRA_INCLUDES =
|
|
EXTRA_LIBS =
|
|
EXTRA_FLAGS =
|
|
|
|
AM_CPPFLAGS = \
|
|
$(EXTRA_DEFINES) \
|
|
$(EXTRA_INCLUDES)
|
|
|
|
lib_LTLIBRARIES = \
|
|
libxrdpvr.la
|
|
|
|
libxrdpvr_la_SOURCES = \
|
|
xrdpvr.c
|
|
|
|
libxrdpvr_la_LDFLAGS = \
|
|
$(EXTRA_FLAGS)
|
|
|
|
libxrdpvr_la_LIBADD = \
|
|
$(EXTRA_LIBS)
|