diff options
author | Nikias Bassen | 2013-02-18 18:21:31 +0100 |
---|---|---|
committer | Nikias Bassen | 2013-02-18 18:21:31 +0100 |
commit | 386ea830e44a61f8ef70d08025e3f1d5b1b8bd1a (patch) | |
tree | a569ffbe0b47e9f463ef35bf2ec5a2b8854ce954 /xsd2c | |
parent | 7527650eaab1f1910f6bfa24061a0bddc7937b9f (diff) | |
download | csoap-master.tar.gz csoap-master.tar.bz2 |
Diffstat (limited to 'xsd2c')
-rwxr-xr-x | xsd2c/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xsd2c/Makefile.am b/xsd2c/Makefile.am index 8a19b30..aa8de47 100755 --- a/xsd2c/Makefile.am +++ b/xsd2c/Makefile.am @@ -3,9 +3,10 @@ # bin_PROGRAMS=xsd2c -INCLUDES=$(libxml2_CFLAGS) -I$(top_srcdir) -x_LDFLAG=$(libxml2_LIBS) +AM_CPPFLAGS=-I$(top_srcdir) +AM_CFLAGS=$(libxml2_CFLAGS) +AM_LDFLAGS=$(libxml2_LIBS) xsd2c_SOURCES=tr.c Enumeration.c util.c obj.c formatter.c xsd2c.c main.c -xsd2c_LDFLAGS=$(x_LDFLAG) +xsd2c_LDFLAGS=$(AM_LDFLAGS) |