7dfec748f207f0f239d856d698ff0b3988f5c16f
[m17n/m17n-lib-cs.git] / Makefile
1 CORE_SRC = MSymbol.cs MPlist.cs MText.cs
2 CS=gmcs
3
4 all: M17N.exe symbol.exe plist.exe mtext.exe textprop.exe
5
6 M17NCore.dll: ${CORE_SRC}
7         $(CS) /out:$@ /t:library ${CORE_SRC}
8
9 M17N.exe: M17N.cs M17NCore.dll
10         $(CS) /r:M17NCore M17N.cs
11
12 mtext.exe: mtext.cs M17NCore.dll
13         $(CS) -codepage:65001 /r:M17NCore mtext.cs
14
15 symbol.exe: symbol.cs M17NCore.dll
16         $(CS) -codepage:65001 /r:M17NCore symbol.cs
17
18 plist.exe: plist.cs M17NCore.dll
19         $(CS) -codepage:65001 /r:M17NCore plist.cs
20
21 textprop.exe: textprop.cs M17NCore.dll
22         $(CS) -codepage:65001 /r:M17NCore textprop.cs
23
24 clean:
25         rm -f *.dll *.exe