*** empty log message ***
[m17n/m17n-lib-cs.git] / Makefile
1 CORE_SRC = MSymbol.cs MPlist.cs MText.cs temp.cs
2
3 all: M17N.exe temp.exe
4
5 M17N.exe: M17N.cs M17NCore.dll
6         mcs /r:M17NCore M17N.cs
7
8 M17NCore.dll: ${CORE_SRC}
9         mcs /out:$@ /t:library ${CORE_SRC}
10
11 temp.exe: temp.cs M17NCore.dll
12         mcs /r:M17NCore temp.cs
13
14 clean:
15         rm -f *.dll *.exe