~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/tests/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-07-24 21:31:56 UTC
  • mto: (236.1.42 codestyle)
  • mto: This revision was merged to the branch mainline in revision 212.
  • Revision ID: monty@inaugust.com-20080724213156-p7f25ldaxvhiq6sh
Moved the includes we use everywhere to to GLOBAL_CPPFLAGS and added AM_CPPFLAGS to an AC_SUBST, so that we could take out the redundant declaration from most fof the Makefiles.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
MYSQLDATAdir =          $(localstatedir)
17
17
MYSQLSHAREdir =         $(pkgdatadir)
18
18
MYSQLBASEdir=           $(prefix)
19
 
AM_CPPFLAGS =           -I$(top_builddir)/include \
20
 
                        -I$(top_srcdir)/include -I$(srcdir)  \
21
 
                        -I$(top_srcdir)/strings
 
19
AM_CPPFLAGS=            ${GLOBAL_CPPFLAGS} \
 
20
                        ${top_srcdir}/strings
22
21
LDADD =                 $(top_builddir)/strings/libmysyslt.la \
23
22
                        $(top_builddir)/strings/libmystrings.la
24
23