Remove unset variable SWIG_ARGS from Makefile.am

This commit is contained in:
John Ralls
2017-11-30 13:31:23 -08:00
parent 649a6a263e
commit 5ca129d82d
13 changed files with 17 additions and 17 deletions

View File

@@ -25,7 +25,7 @@ libtest_core_la_LDFLAGS = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-unittest-support-guile.c: unittest-support.i $(top_srcdir)/common/base-typemaps.i swig-unittest-support-guile.c: unittest-support.i $(top_srcdir)/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common \ -I${top_srcdir}/common \
${AM_CPPFLAGS} -o $@ $< ${AM_CPPFLAGS} -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
@@ -37,7 +37,7 @@ endif
endif endif
swig-unittest-support-python.c: unittest-support.i $(top_srcdir)/common/base-typemaps.i swig-unittest-support-python.c: unittest-support.i $(top_srcdir)/common/base-typemaps.i
$(SWIG) -python -Wall -Werror $(SWIG_ARGS) \ $(SWIG) -python -Wall -Werror \
-I${GLIB_CFLAGS} -I${top_srcdir}/common \ -I${GLIB_CFLAGS} -I${top_srcdir}/common \
${AM_CPPFLAGS} -o $@ $< ${AM_CPPFLAGS} -o $@ $<

View File

@@ -220,7 +220,7 @@ gnc-warnings.h: gschemas/org.gnucash.warnings.gschema.xml.in make-gnc-warnings-h
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-gnome-utils.c: gnome-utils.i \ swig-gnome-utils.c: gnome-utils.i \
${top_srcdir}/common/base-typemaps.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -150,7 +150,7 @@ noinst_HEADERS = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-gnome.c: gnome.i dialog-progress.h ${top_srcdir}/common/base-typemaps.i swig-gnome.c: gnome.i dialog-progress.h ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -55,7 +55,7 @@ libgncmod_html_la_LIBADD = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-gnc-html.c: gnc-html.i gnc-html.h \ swig-gnc-html.c: gnc-html.i gnc-html.h \
${top_srcdir}/common/base-typemaps.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -49,7 +49,7 @@ libgncmod_report_gnome_la_LIBADD = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-report-gnome.c: report-gnome.i ${top_srcdir}/common/base-typemaps.i swig-report-gnome.c: report-gnome.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -25,7 +25,7 @@ libgncmod_report_system_la_LIBADD = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-report-system.c: report-system.i ${top_srcdir}/common/base-typemaps.i swig-report-system.c: report-system.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -103,7 +103,7 @@ libgncmod_app_utils_la_LIBADD = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-app-utils-guile.c: app-utils.i ${top_srcdir}/common/base-typemaps.i swig-app-utils-guile.c: app-utils.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL
@@ -113,7 +113,7 @@ if ! SWIG_DIST_FAIL
endif endif
endif endif
swig-app-utils-python.c: app-utils.i ${top_srcdir}/common/base-typemaps.i swig-app-utils-python.c: app-utils.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -python -Wall -Werror $(SWIG_ARGS) \ $(SWIG) -python -Wall -Werror \
-I${GLIB_CFLAGS} -I${top_srcdir}/common -o $@ $< -I${GLIB_CFLAGS} -I${top_srcdir}/common -o $@ $<
endif endif

View File

@@ -40,7 +40,7 @@ noinst_HEADERS = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-core-utils-guile.c: core-utils.i ${top_srcdir}/common/base-typemaps.i swig-core-utils-guile.c: core-utils.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL
@@ -50,8 +50,8 @@ if ! SWIG_DIST_FAIL
endif endif
endif endif
swig-core-utils-python.c: core-utils.i ${top_srcdir}/common/base-typemaps.i swig-core-utils-python.c: core-utils.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -python -Wall -Werror $(SWIG_ARGS) \ $(SWIG) -python -Wall -Werror \
-I${GLIB_CFLAGS} -I${top_srcdir}/common -o $@ $< -I${GLIB_CFLAGS} -I${top_srcdir}/common -I${srcdir} -o $@ $<
endif endif
AM_CPPFLAGS = \ AM_CPPFLAGS = \

View File

@@ -300,7 +300,7 @@ if BUILDING_FROM_VCS
swig-engine.c: engine.i $(top_srcdir)/common/base-typemaps.i \ swig-engine.c: engine.i $(top_srcdir)/common/base-typemaps.i \
$(gncinclude_HEADERS) $(noinst_HEADERS) $(gncinclude_HEADERS) $(noinst_HEADERS)
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -31,7 +31,7 @@ noinst_DATA = .scm-links
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-gnc-module.c: gnc-module.i ${top_srcdir}/common/base-typemaps.i swig-gnc-module.c: gnc-module.i ${top_srcdir}/common/base-typemaps.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module \ $(SWIG) -guile -Linkage module \
-I${top_srcdir}/common -o $@ $< -I${top_srcdir}/common -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL

View File

@@ -24,7 +24,7 @@ libgncmodbar_la_LIBADD=libbar.la \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-bar.c: bar.i swig-bar.c: bar.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module -o $@ $< $(SWIG) -guile -Linkage module -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \ if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \

View File

@@ -28,7 +28,7 @@ libgncmodbaz_la_LIBADD = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-baz.c: baz.i swig-baz.c: baz.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module -o $@ $< $(SWIG) -guile -Linkage module -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \ if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \

View File

@@ -30,7 +30,7 @@ EXTRA_DIST = \
if BUILDING_FROM_VCS if BUILDING_FROM_VCS
swig-foo.c: foo.i swig-foo.c: foo.i
$(SWIG) -guile $(SWIG_ARGS) -Linkage module -o $@ $< $(SWIG) -guile -Linkage module -o $@ $<
if ! OS_WIN32 if ! OS_WIN32
if ! SWIG_DIST_FAIL if ! SWIG_DIST_FAIL
if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \ if ! `grep "define scm_from_utf8_string" $@ > /dev/null 2>&1`; then \