binaries/Makefile: s/INCLUDES/AM_CPPFLAGS/

binaries/Makefile.am:15: warning: 'INCLUDES' is the old name
                           for 'AM_CPPFLAGS' (or '*_CPPFLAGS')

Change-Id: I9343f53c125be8e4c7590164a8541d9fe114deb5
This commit is contained in:
Vadim Yanitskiy 2022-08-14 12:59:05 +07:00 committed by fixeria
parent c3e797b87c
commit 2c28c114c8
1 changed files with 7 additions and 2 deletions

View File

@ -10,8 +10,13 @@ include $(top_srcdir)/test_apps/Makefile.am
include $(top_srcdir)/src/Makefile.am
LDADD = libsmpp34.la
AM_CPPFLAGS = -D_REENTRANT -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS
AM_CPPFLAGS = \
-I$(top_srcdir)/src \
-I$(top_srcdir) \
-D_REENTRANT \
-DBSD_COMP \
-D_POSIX_PTHREAD_SEMANTICS \
$(NULL)
AM_CFLAGS = @CFLAGS@ -Wall -fPIC # -static
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)
AM_LDFLAGS = -lrt -lpthread
OBJ_EXTRA_DIST = $(esme_EXTRA_DIST)