*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 28 Apr 2005 21:12:12 +0200
changeset 280 20b2b26b74ca
parent 279 1578e4f13b8a
child 281 2935b3c27b05
*** empty log message ***
Make.proto
Make.spec
--- a/Make.proto	Thu Apr 28 21:09:23 2005 +0200
+++ b/Make.proto	Thu Apr 28 21:12:12 2005 +0200
@@ -11,13 +11,6 @@
 #    make clean   - clean all temp files
 #    make clobber - clean all
 
-# module and directory-in-module;
-# these should correspond to the directory hierarchy
-# location (otherwise, ST/X will have a hard time to
-# find out the packages location from its packageID)
-MODULE=exept
-MODULE_DIR=regression
-
 # default installation directory:
 # (overwrite with 'make INSTALLTOP_DIR=... install')
 # the INSTALLBASE is imported from configurations... and usually
@@ -41,24 +34,11 @@
 # ALLSUBDIRS=
 
 
-# the name of your classLibrary:
-# ********** REQUIRED: CHECK the next line ***
-LIBNAME=regression
-
-
 # the next define suppresses installation of 
 # the classes as autoloaded (i.e. not added to abbrev.stc). 
 SUPPRESS_LOCAL_ABBREVS=1
 
 
-# the package is stored as an ID in classes and methods
-# to identify code belonging to this project.
-# It also specifies the position in the source repository
-# and directory tree, when packages are loaded by packageID.
-# ********** REQUIRED: CHECK the next line ***
-PACKAGE=$(MODULE):$(MODULE_DIR)
-
-
 # Argument(s) to the stc compiler.
 #  -H.         : create header files locally
 #                (if removed, they will be created as common
@@ -134,38 +114,6 @@
 
 all:: preMake classLibRule postMake
 
-OBJS= \
-    BlockTest.$(O) \
-    ClassWithoutVersionMethod.$(O) \
-    CollectionTests.$(O) \
-    CompilerTest.$(O) \
-    ComplexTest.$(O) \
-    ContextTest2.$(O) \
-    DeepCopyTests.$(O) \
-    DelayTest.$(O) \
-    EnumerationTests.$(O) \
-    ExternalStreamTest.$(O) \
-    FileOpenTest.$(O) \
-    FileStreamTest.$(O) \
-    FloatTest.$(O) \
-    FractionTest.$(O) \
-    IntegerTest.$(O) \
-    JITTest.$(O) \
-    ManyProcessesTest.$(O) \
-    OperatingSystemTest.$(O) \
-    OperationInQueueTests.$(O) \
-    OrderedCollectionTest.$(O) \
-    PTYTest.$(O) \
-    ParserTest.$(O) \
-    PipeStreamTest.$(O) \
-    ProcessTest.$(O) \
-    QueueTest.$(O) \
-    SharedQueueTest.$(O) \
-    StackFrameTest.$(O) \
-    TestDialogs1.$(O) \
-    WeakCollectionTest.$(O) \
-    XMLCoderTests.$(O)
-
 # add more install actions here
 install::
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Make.spec	Thu Apr 28 21:12:12 2005 +0200
@@ -0,0 +1,39 @@
+# $Header$
+#
+MODULE=exept
+MODULE_DIR=regression
+LIBNAME=regression
+PACKAGE=$(MODULE):$(MODULE_DIR)
+
+OBJS= \
+    RegressionTests__BlockTest.$(O) \
+    RegressionTests__ClassWithoutVersionMethod.$(O) \
+    RegressionTests__CollectionTests.$(O) \
+    RegressionTests__CompilerTest.$(O) \
+    RegressionTests__ComplexTest.$(O) \
+    RegressionTests__ContextTest2.$(O) \
+    RegressionTests__DeepCopyTests.$(O) \
+    RegressionTests__DelayTest.$(O) \
+    RegressionTests__EnumerationTests.$(O) \
+    RegressionTests__ExternalStreamTest.$(O) \
+    RegressionTests__FileOpenTest.$(O) \
+    RegressionTests__FileStreamTest.$(O) \
+    RegressionTests__FloatTest.$(O) \
+    RegressionTests__FractionTest.$(O) \
+    RegressionTests__IntegerTest.$(O) \
+    RegressionTests__JavaScriptTests.$(O) \
+    RegressionTests__JITTest.$(O) \
+    RegressionTests__ManyProcessesTest.$(O) \
+    RegressionTests__OperatingSystemTest.$(O) \
+    RegressionTests__OperationInQueueTests.$(O) \
+    RegressionTests__OrderedCollectionTest.$(O) \
+    RegressionTests__PTYTest.$(O) \
+    RegressionTests__ParserTest.$(O) \
+    RegressionTests__PipeStreamTest.$(O) \
+    RegressionTests__ProcessTest.$(O) \
+    RegressionTests__QueueTest.$(O) \
+    RegressionTests__SharedQueueTest.$(O) \
+    RegressionTests__StackFrameTest.$(O) \
+    RegressionTests__TestDialogs1.$(O) \
+    RegressionTests__WeakCollectionTest.$(O) \
+    RegressionTests__XMLCoderTests.$(O)