*** empty log message ***
[m17n/m17n-lib-cs.git] / Makefile
1 CORE_SRC = MSymbol.cs MPlist.cs MText.cs
2 CS=gmcs
3
4 all: M17N.exe test-sym.exe test-plist.exe test-mtext.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 test-mtext.exe: test-mtext.cs M17NCore.dll
13         $(CS) -codepage:65001 /r:M17NCore test-mtext.cs
14
15 test-sym.exe: test-sym.cs M17NCore.dll
16         $(CS) -codepage:65001 /r:M17NCore test-sym.cs
17
18 test-plist.exe: test-plist.cs M17NCore.dll
19         $(CS) -codepage:65001 /r:M17NCore test-plist.cs
20
21 clean:
22         rm -f *.dll *.exe