*** 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 temp.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 temp.exe: temp.cs M17NCore.dll
13         $(CS) /r:M17NCore temp.cs
14
15 clean:
16         rm -f *.dll *.exe