Automake Manual pg. 113 qutestion

2015-04-02 Thread Arthur Schwarz
Win7-64-bit Cygwin Automake 1.14.1 The example given on the page has: % cat configure.ac o o o AC_REQUIRE_AUX_FILE([tap-driver.sh]) o o o % cat Makefile.am TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ $(top_srcdir)/build-aux/tap-driver.sh o o o % cp PREFIX/share/automake-APIVE

The right way to use standard variable in configure.ac

2015-04-02 Thread Andy Falanga (afalanga)
Hi, I placed the following in my configure.ac file: CPPFLAGS="-DMACRO1 -DMACRO2" because I found that as an example on a webpage someplace. I reviewed so many learning about the autotools that I don't recall which one now. I did this because there were some preprocessor flags that I wanted t

RE: The right way to use standard variable in configure.ac

2015-04-02 Thread John Calcote
Did you try: CPPFLAGS="$CPPFLAGS -DMACR..." ? John Sent via the Samsung GALAXY S® 5, an AT&T 4G LTE smartphone Original message From: "Andy Falanga (afalanga)" Date:04/02/2015 5:04 PM (GMT-07:00) To: automake@gnu.org Subject: The right way to use standard variable in