summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-03 21:59:48 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2019-02-04 18:46:16 +0000
commit9defd8e0330ebd491b2102bb7dc6d6b43715c712 (patch)
treec96b550569834ec297dd91ac17869cb45ed17e3f /Makefile.in
parentb50e5fac8e1d76e8810c552f533a43f67ff57837 (diff)
downloadswig-9defd8e0330ebd491b2102bb7dc6d6b43715c712.tar.gz
Add support for differentiating target language statuses
Three status: Disabled, Experimental and Supported. Any target language classified as 'Experimental' will issue new warning 524 SWIGWARN_LANG_EXPERIMENTAL. Any target language classified as 'Disabled' will error out. Languages will be classified in forthcoming commits. Issue #1437
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 33b712d2c..3394f49dc 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -468,7 +468,7 @@ check-maintainer-clean: maintainer-clean
$(srcdir)/Lib/swigwarn.swg: $(srcdir)/Source/Include/swigwarn.h
mkdir -p Lib
- echo "/* SWIG warning codes */" > $@
+ echo "/* SWIG warning codes - generated from swigwarn.h - do not edit */" > $@
cat $? | grep "^#define WARN\|/\*.*\*/\|^[ \t]*$$" | sed 's/^#define \(WARN.*[0-9][0-9]*\)\(.*\)$$/%define SWIG\1 %enddef\2/' >> $@
#####################################################################