*** empty log message ***
[m17n/m17n-lib-cs.git] / Makefile
index 6c9114f..1148bd8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -2,6 +2,7 @@ CS=gmcs
 
 M17N_SRC = M17N.cs
 CORE_SRC = MSymbol.cs MPlist.cs MCharTable.cs MText.cs MDatabase.cs
+INPUT_SRC = MInputMethod.cs
 EXAMPLE = symbol.exe plist.exe chartab.exe text.exe textprop.exe database.exe
 TEST = rearsticky.exe frontsticky.exe \
        sensitive.exe frontsensitive.exe rearsensitive.exe
@@ -14,6 +15,9 @@ M17N.dll: ${M17N_SRC}
 M17NCore.dll: M17N.dll ${CORE_SRC}
        $(CS) -out:$@ -t:library -r:M17N.dll ${CORE_SRC}
 
+M17NInput.dll: M17N.dll M17NCore.dll ${INPUT_SRC}
+       $(CS) -out:$@ -t:library -r:M17N.dll -r:M17NCore.dll ${INPUT_SRC}
+
 %.exe: %.cs M17NCore.dll
        $(CS) -codepage:65001 -r:M17N.dll -r:M17NCore $<
 
@@ -22,3 +26,6 @@ clean:
 
 temp.exe: temp.cs
        $(CS) temp.cs
+
+expr.exe: M17N.dll M17NCore.dll MExpression.cs expr.cs
+       $(CS) -out:$@ -t:library -r:M17N.dll -r:M17NCore.dll MExpression.cs expr.cs