1
0
forked from GitHub/gf-rgl

fixes to make resource Makefile to run without errors

This commit is contained in:
aarne
2007-06-18 21:44:50 +00:00
parent cb67cfb087
commit 90405681e6
7 changed files with 23 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
incomplete resource Constructors = open Grammar in { incomplete resource Constructors = open Grammar in {
flags optimize=noexpand ;
-- This module gives access to the syntactic constructions of the -- This module gives access to the syntactic constructions of the
-- GF Resource Grammar library. Its main principle is simple: -- GF Resource Grammar library. Its main principle is simple:
-- to construct an object of type $C$, use the function $mkC$. -- to construct an object of type $C$, use the function $mkC$.

View File

@@ -0,0 +1,4 @@
--# -path=.:alltenses:prelude
instance SyntaxDan of Syntax = ConstructorsDan, CatDan, StructuralDan ** {} ;

View File

@@ -0,0 +1,4 @@
--# -path=.:alltenses:prelude
instance SyntaxIta of Syntax = ConstructorsIta, CatIta, StructuralIta ** {} ;

View File

@@ -0,0 +1,4 @@
--# -path=.:alltenses:prelude
instance SyntaxNor of Syntax = ConstructorsNor, CatNor, StructuralNor ** {} ;

View File

@@ -0,0 +1,4 @@
--# -path=.:alltenses:prelude
instance SyntaxRus of Syntax = ConstructorsRus, CatRus, StructuralRus ** {} ;

View File

@@ -0,0 +1,4 @@
--# -path=.:alltenses:prelude
instance SyntaxSpa of Syntax = ConstructorsSpa, CatSpa, StructuralSpa ** {} ;

View File

@@ -56,7 +56,7 @@ incomplete concrete MultiI of Multi =
ComparAdvAdjS ca a s = Lang.ComparAdvAdjS ca a s ** {point = s.point} ; ComparAdvAdjS ca a s = Lang.ComparAdvAdjS ca a s ** {point = s.point} ;
AdAdv ad a = Lang.AdAdv ad a ** {point = a.point} ; AdAdv ad a = Lang.AdAdv ad a ** {point = a.point} ;
SubjS su s = Lang.SubjS su s ** {point = s.point} ; SubjS su s = Lang.SubjS su s ** {point = s.point} ;
AdvSC sc = AdvSC sc ** {point = sc.point} ; AdvSC sc = Lang.AdvSC sc ** {point = sc.point} ;
UseV v = Lang.UseV v ** noPoint ; UseV v = Lang.UseV v ** noPoint ;
ComplV2 v np = Lang.ComplV2 v np ** {point = np.point} ; ComplV2 v np = Lang.ComplV2 v np ** {point = np.point} ;