X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=Makefile;h=c2b24902173ec1bbde372c020c32cbebf37f4eff;hb=f5543e0aaf8f077fd584cbbdeaa7be8936269aa0;hp=6068ec59297ff84c8bd9c931e1c8d9be790266ca;hpb=28770b75bc07a420e70d0d49c57309bde5308622;p=m17n%2Fm17n-lib-cs.git diff --git a/Makefile b/Makefile index 6068ec5..c2b2490 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,47 @@ +CS=gmcs2 +DEBUG_FLAG = -debug +CODEPAGE = 65001 + +RUNCS = ${CS} ${DEBUG_FLAG} -codepage:${CODEPAGE} + M17N_SRC = M17N.cs -CORE_SRC = MSymbol.cs MPlist.cs MText.cs -CS=gmcs +CORE_SRC = MSymbol.cs MPlist.cs MCharTable.cs MText.cs MDatabase.cs +INPUT_SRC = MInputMethod.cs +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 \ + xex.exe +TEST = rearsticky.exe frontsticky.exe bothsticky.exe \ + sensitive.exe frontsensitive.exe rearsensitive.exe -all: M17N.dll symbol.exe plist.exe mtext.exe textprop.exe +all: ${DLL} ${EXAMPLE} ${TEST} M17N.dll: ${M17N_SRC} - $(CS) /out:$@ /t:library ${M17N_SRC} + $(RUNCS) -out:$@ -t:library ${M17N_SRC} M17NCore.dll: M17N.dll ${CORE_SRC} - $(CS) /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} -mtext.exe: mtext.cs M17NCore.dll - $(CS) -codepage:65001 /r:M17NCore mtext.cs +XmlExpr.dll: ${XEX_SRC} + $(RUNCS) -out:$@ -t:library ${XEX_SRC} -symbol.exe: symbol.cs M17NCore.dll - $(CS) -codepage:65001 /r:M17N.dll /r:M17NCore symbol.cs +input.exe: input.cs M17NIM.dll XmlExpr.dll + $(RUNCS) -r:M17N.dll -r:M17NCore -r:XmlExpr -r:M17NIM.dll $< -plist.exe: plist.cs M17NCore.dll - $(CS) -codepage:65001 /r:M17NCore plist.cs +expr.exe: expr.cs + $(RUNCS) -r:M17N.dll -r:M17NCore -r:M17NExpr $< -textprop.exe: textprop.cs M17NCore.dll - $(CS) -codepage:65001 /r:M17N.dll /r:M17NCore textprop.cs +xex.exe: xex.cs XmlExpr.dll + $(RUNCS) -r:XmlExpr.dll $< + +%.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