*** empty log message ***
[m17n/m17n-lib-cs.git] / Makefile
index 9097d70..c2b2490 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,39 +1,47 @@
-CS=gmcs
+CS=gmcs2
+DEBUG_FLAG = -debug
+CODEPAGE = 65001
+
+RUNCS = ${CS} ${DEBUG_FLAG} -codepage:${CODEPAGE}
 
 M17N_SRC = M17N.cs
 CORE_SRC = MSymbol.cs MPlist.cs MCharTable.cs MText.cs MDatabase.cs
-EXPR_SRC = MExpression.cs
 INPUT_SRC = MInputMethod.cs
-DLL = M17N.dll M17NCore.dll M17NExpr.dll M17NIM.dll
+XEX_SRC = XmlExpr.cs
+DLL = M17N.dll M17NCore.dll M17NIM.dll XmlExpr.dll
 EXAMPLE = symbol.exe plist.exe chartab.exe text.exe textprop.exe database.exe \
-       expr.exe
+       xex.exe
 TEST = rearsticky.exe frontsticky.exe bothsticky.exe \
        sensitive.exe frontsensitive.exe rearsensitive.exe
 
-DEBUG_FLAG =
-
 all: ${DLL} ${EXAMPLE} ${TEST}
 
 M17N.dll: ${M17N_SRC}
-       $(CS) $(DEBUG_FLAG) -out:$@ -t:library ${M17N_SRC}
+       $(RUNCS) -out:$@ -t:library ${M17N_SRC}
 
 M17NCore.dll: M17N.dll ${CORE_SRC}
-       $(CS) $(DEBUG_FLAG) -out:$@ -t:library -r:M17N.dll ${CORE_SRC}
+       $(RUNCS) -out:$@ -t:library -r:M17N.dll ${CORE_SRC}
+
+M17NIM.dll: ${INPUT_SRC} M17N.dll M17NCore.dll XmlExpr.dll
+       $(RUNCS) -out:$@ -t:library -r:M17N.dll -r:M17NCore.dll -r:XmlExpr.dll ${INPUT_SRC}
+
+XmlExpr.dll: ${XEX_SRC}
+       $(RUNCS) -out:$@ -t:library ${XEX_SRC}
 
-M17NExpr.dll: M17N.dll M17NCore.dll ${EXPR_SRC}
-       $(CS) $(DEBUG_FLAG) -out:$@ -t:library -r:M17N.dll -r:M17NCore.dll ${EXPR_SRC}
+input.exe: input.cs M17NIM.dll XmlExpr.dll
+       $(RUNCS) -r:M17N.dll -r:M17NCore -r:XmlExpr -r:M17NIM.dll $<
 
-M17NIM.dll: M17N.dll M17NCore.dll M17NExpr.dll ${INPUT_SRC}
-       $(CS) $(DEBUG_FLAG) -out:$@ -t:library -r:M17N.dll -r:M17NCore.dll -r:M17NExpr.dll ${INPUT_SRC}
+expr.exe: expr.cs
+       $(RUNCS) -r:M17N.dll -r:M17NCore -r:M17NExpr $<
 
-input.exe: %.cs
-       $(CS) $(DEBUG_FLAG) -codepage:65001 -r:M17N.dll -r:M17NCore -r:M17NExpr  -r:M17NIM.dll $<
+xex.exe: xex.cs XmlExpr.dll
+       $(RUNCS) -r:XmlExpr.dll $<
 
-%.exe: %.cs
-       $(CS) $(DEBUG_FLAG) -codepage:65001 -r:M17N.dll -r:M17NCore $<
+%.exe: %.cs ${DLL}
+       $(RUNCS) -r:M17N.dll -r:M17NCore $<
 
 clean:
-       rm -f *.dll *.exe
+       rm -f $(DLL) *.exe
 
 temp.exe: temp.cs
        $(CS) temp.cs