X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=Makefile;h=0743c4af7897a256e3f6aff1ca9a5d7430d63d1b;hb=70bd0093109de5d05d717ded6a6fa352fdd44283;hp=d4d68399e4b244b566c938bbacad617dfb90c109;hpb=e59f5d0b969076b81baac56cdd8af1d7f49eec43;p=m17n%2Fm17n-lib-cs.git diff --git a/Makefile b/Makefile index d4d6839..0743c4a 100644 --- a/Makefile +++ b/Makefile @@ -2,20 +2,20 @@ CS=gmcs M17N_SRC = M17N.cs CORE_SRC = MSymbol.cs MPlist.cs MText.cs MDatabase.cs -EXAMPLE = symbol.exe plist.exe mtext.exe textprop.exe database.exe +EXAMPLE = symbol.exe plist.exe text.exe textprop.exe database.exe TEST = rearsticky.exe frontsticky.exe \ sensitive.exe frontsensitive.exe rearsensitive.exe all: ${EXAMPLE} ${TEST} M17N.dll: ${M17N_SRC} - $(CS) /out:$@ /t:library ${M17N_SRC} + $(CS) -out:$@ -t:library ${M17N_SRC} M17NCore.dll: M17N.dll ${CORE_SRC} - $(CS) /out:$@ /t:library /r:M17N.dll /doc:M17NCore.xml ${CORE_SRC} + $(CS) -out:$@ -t:library -r:M17N.dll -doc:M17NCore.xml ${CORE_SRC} %.exe: %.cs M17NCore.dll - $(CS) -codepage:65001 /r:M17N.dll /r:M17NCore $< + $(CS) -codepage:65001 -r:M17N.dll -r:M17NCore $< clean: rm -f *.dll *.exe