From 4960338534f46fff02102e78af93849d3fce52e0 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Thu, 31 Aug 2000 17:18:19 +0000 Subject: [PATCH] (check): New target. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@757 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/GIFPlot/Guile/full/Makefile | 4 ++-- Examples/GIFPlot/Guile/simple/Makefile | 6 +++--- Examples/GIFPlot/Java/Makefile | 3 ++- Examples/GIFPlot/Perl/full/Makefile | 4 ++-- Examples/GIFPlot/Perl/shadow/Makefile | 4 ++-- Examples/GIFPlot/Perl/simple/Makefile | 6 +++--- Examples/GIFPlot/Python/full/Makefile | 4 ++-- Examples/GIFPlot/Python/simple/Makefile | 6 +++--- Examples/GIFPlot/Ruby/full/Makefile | 4 ++-- Examples/GIFPlot/Ruby/simple/Makefile | 6 +++--- Examples/GIFPlot/Tcl/full/Makefile | 4 ++-- Examples/GIFPlot/Tcl/mandel/Makefile | 4 ++-- Examples/GIFPlot/Tcl/simple/Makefile | 6 +++--- 13 files changed, 31 insertions(+), 30 deletions(-) diff --git a/Examples/GIFPlot/Guile/full/Makefile b/Examples/GIFPlot/Guile/full/Makefile index 711938d02..74915ad16 100644 --- a/Examples/GIFPlot/Guile/full/Makefile +++ b/Examples/GIFPlot/Guile/full/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Include -SRCS = +SRCS = TARGET = gifplot INTERFACE = gifplot.i LIBS = -L../.. -lgifplot -lm @@ -17,4 +17,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so gifguile .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Guile/simple/Makefile b/Examples/GIFPlot/Guile/simple/Makefile index 7c5722e7d..77fe283d3 100644 --- a/Examples/GIFPlot/Guile/simple/Makefile +++ b/Examples/GIFPlot/Guile/simple/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig -SWIGOPT = -SRCS = +SWIGOPT = +SRCS = TARGET = simple INTERFACE = simple.i LIBS = -L../.. -lgifplot @@ -17,4 +17,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so gifguile .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Java/Makefile b/Examples/GIFPlot/Java/Makefile index f9d368963..6017e1a77 100644 --- a/Examples/GIFPlot/Java/Makefile +++ b/Examples/GIFPlot/Java/Makefile @@ -1,7 +1,7 @@ TOP = ../.. SWIG = $(TOP)/../swig -shadow SWIGOPT = -I../Include -SRCS = +SRCS = TARGET = libjgifplot INTERFACE = gifplot.i LIBS = -L.. -lgifplot -lm @@ -15,3 +15,4 @@ all:: clean:: rm -f *_wrap* *.o *~ *.so .~* core *.gif *.class ColorMap.java FrameBuffer.java Plot2D.java Plot3D.java gifplot.java +check: all diff --git a/Examples/GIFPlot/Perl/full/Makefile b/Examples/GIFPlot/Perl/full/Makefile index ceed95df8..e86b8ccfd 100644 --- a/Examples/GIFPlot/Perl/full/Makefile +++ b/Examples/GIFPlot/Perl/full/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Include -SRCS = +SRCS = TARGET = gifplot INTERFACE = gifplot.i LIBS = -L../.. -lgifplot -lm @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so myperl *.pm .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Perl/shadow/Makefile b/Examples/GIFPlot/Perl/shadow/Makefile index 51ab926e7..99d3f951a 100644 --- a/Examples/GIFPlot/Perl/shadow/Makefile +++ b/Examples/GIFPlot/Perl/shadow/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Interface -shadow -SRCS = +SRCS = TARGET = gifplot INTERFACE = gifplot.i LIBS = -L../.. -lgifplot -lm @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so myperl *.pm .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Perl/simple/Makefile b/Examples/GIFPlot/Perl/simple/Makefile index 791abad8f..850795a56 100644 --- a/Examples/GIFPlot/Perl/simple/Makefile +++ b/Examples/GIFPlot/Perl/simple/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig -SWIGOPT = -SRCS = +SWIGOPT = +SRCS = TARGET = simple INTERFACE = simple.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so myperl *.pm .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Python/full/Makefile b/Examples/GIFPlot/Python/full/Makefile index 0a438f117..361717c5c 100644 --- a/Examples/GIFPlot/Python/full/Makefile +++ b/Examples/GIFPlot/Python/full/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Include -SRCS = +SRCS = TARGET = gifplot INTERFACE = gifplot.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so mypython *.pyc .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Python/simple/Makefile b/Examples/GIFPlot/Python/simple/Makefile index 93b846684..e9b708633 100644 --- a/Examples/GIFPlot/Python/simple/Makefile +++ b/Examples/GIFPlot/Python/simple/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig -SWIGOPT = -SRCS = +SWIGOPT = +SRCS = TARGET = simple INTERFACE = simple.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so mypython *.pyc .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Ruby/full/Makefile b/Examples/GIFPlot/Ruby/full/Makefile index bde3899a2..251fcb282 100644 --- a/Examples/GIFPlot/Ruby/full/Makefile +++ b/Examples/GIFPlot/Ruby/full/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Include -SRCS = +SRCS = TARGET = gifplot INTERFACE = gifplot.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so myruby .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Ruby/simple/Makefile b/Examples/GIFPlot/Ruby/simple/Makefile index c5163b8f3..7d44e5f0b 100644 --- a/Examples/GIFPlot/Ruby/simple/Makefile +++ b/Examples/GIFPlot/Ruby/simple/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig -SWIGOPT = -SRCS = +SWIGOPT = +SRCS = TARGET = simple INTERFACE = simple.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so myruby .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Tcl/full/Makefile b/Examples/GIFPlot/Tcl/full/Makefile index eea1ff5d8..c14250a27 100644 --- a/Examples/GIFPlot/Tcl/full/Makefile +++ b/Examples/GIFPlot/Tcl/full/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Include -SRCS = +SRCS = TARGET = gifplot INTERFACE = gifplot.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so mytclsh .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Tcl/mandel/Makefile b/Examples/GIFPlot/Tcl/mandel/Makefile index 593deecd6..703812129 100644 --- a/Examples/GIFPlot/Tcl/mandel/Makefile +++ b/Examples/GIFPlot/Tcl/mandel/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig SWIGOPT = -I../../Interface -SRCS = +SRCS = TARGET = gifplot INTERFACE = mandel.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so mywish .~* core *.gif - +check: all diff --git a/Examples/GIFPlot/Tcl/simple/Makefile b/Examples/GIFPlot/Tcl/simple/Makefile index 9d7de7f32..9a49d7e89 100644 --- a/Examples/GIFPlot/Tcl/simple/Makefile +++ b/Examples/GIFPlot/Tcl/simple/Makefile @@ -1,7 +1,7 @@ TOP = ../../.. SWIG = $(TOP)/../swig -SWIGOPT = -SRCS = +SWIGOPT = +SRCS = TARGET = simple INTERFACE = simple.i LIBS = -L../.. -lgifplot @@ -20,4 +20,4 @@ static:: clean:: rm -f *_wrap* *.o *~ *.so mytclsh .~* core *.gif - +check: all