Disable Allegrcol target language
Clean up to disable target languages that have been neglected/not functional. Target language be fully deleted in SWIG 4.1 unless a new maintainer brings it up to an acceptable status (experimental or supported). Issue #1447
This commit is contained in:
parent
09e0577d95
commit
6d7e3df54e
13 changed files with 10 additions and 68 deletions
10
Makefile.in
10
Makefile.in
|
|
@ -71,7 +71,6 @@ skip-ocaml = test -n "@SKIP_OCAML@"
|
|||
skip-octave = test -n "@SKIP_OCTAVE@"
|
||||
skip-csharp = test -n "@SKIP_CSHARP@"
|
||||
skip-lua = test -n "@SKIP_LUA@"
|
||||
skip-allegrocl = test -n "@SKIP_ALLEGROCL@"
|
||||
skip-cffi = test -n "@SKIP_CFFI@"
|
||||
skip-r = test -n "@SKIP_R@"
|
||||
skip-scilab = test -n "@SKIP_SCILAB@"
|
||||
|
|
@ -113,7 +112,6 @@ check-aliveness:
|
|||
@$(skip-octave) || ./$(TARGET) -octave -help
|
||||
@$(skip-php) || ./$(TARGET) -php7 -help
|
||||
@$(skip-csharp) || ./$(TARGET) -csharp -help
|
||||
@$(skip-allegrocl)|| ./$(TARGET) -allegrocl -help
|
||||
@$(skip-cffi) || ./$(TARGET) -cffi -help
|
||||
@$(skip-lua) || ./$(TARGET) -lua -help
|
||||
@$(skip-r) || ./$(TARGET) -r -help
|
||||
|
|
@ -141,7 +139,6 @@ check-versions: \
|
|||
check-php-version \
|
||||
check-csharp-version \
|
||||
check-lua-version \
|
||||
check-allegrocl-version \
|
||||
check-cffi-version \
|
||||
check-r-version \
|
||||
check-scilab-version \
|
||||
|
|
@ -176,7 +173,6 @@ check-examples: \
|
|||
check-php-examples \
|
||||
check-csharp-examples \
|
||||
check-lua-examples \
|
||||
check-allegrocl-examples \
|
||||
check-cffi-examples \
|
||||
check-r-examples \
|
||||
check-scilab-examples \
|
||||
|
|
@ -197,7 +193,6 @@ octave_examples :=$(shell sed '/^\#/d' $(srcdir)/Examples/octave/check.list)
|
|||
php_examples :=$(shell sed '/^\#/d' $(srcdir)/Examples/php/check.list)
|
||||
csharp_examples :=$(shell sed '/^\#/d' $(srcdir)/Examples/csharp/check.list)
|
||||
lua_examples :=$(shell sed '/^\#/d' $(srcdir)/Examples/lua/check.list)
|
||||
allegrocl_examples :=
|
||||
cffi_examples :=
|
||||
r_examples :=$(shell sed '/^\#/d' $(srcdir)/Examples/r/check.list)
|
||||
scilab_examples :=$(shell sed '/^\#/d' $(srcdir)/Examples/scilab/check.list)
|
||||
|
|
@ -240,7 +235,6 @@ check-test-suite: \
|
|||
check-php-test-suite \
|
||||
check-csharp-test-suite \
|
||||
check-lua-test-suite \
|
||||
check-allegrocl-test-suite \
|
||||
check-cffi-test-suite \
|
||||
check-r-test-suite \
|
||||
check-scilab-test-suite \
|
||||
|
|
@ -289,7 +283,6 @@ all-test-suite: \
|
|||
all-php-test-suite \
|
||||
all-csharp-test-suite \
|
||||
all-lua-test-suite \
|
||||
all-allegrocl-test-suite \
|
||||
all-cffi-test-suite \
|
||||
all-r-test-suite \
|
||||
all-scilab-test-suite \
|
||||
|
|
@ -314,7 +307,6 @@ broken-test-suite: \
|
|||
broken-php-test-suite \
|
||||
broken-csharp-test-suite \
|
||||
broken-lua-test-suite \
|
||||
broken-allegrocl-test-suite \
|
||||
broken-cffi-test-suite \
|
||||
broken-r-test-suite \
|
||||
broken-scilab-test-suite \
|
||||
|
|
@ -452,7 +444,7 @@ install-main:
|
|||
@$(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(BIN_DIR)/`echo $(TARGET_NOEXE) | sed '$(transform)'`@EXEEXT@
|
||||
|
||||
lib-languages = typemaps tcl perl5 python guile java mzscheme ruby php ocaml octave \
|
||||
csharp allegrocl lua cffi r go d javascript javascript/jsc \
|
||||
csharp lua cffi r go d javascript javascript/jsc \
|
||||
javascript/v8 scilab xml
|
||||
|
||||
lib-modules = std
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue