mirror of
https://git.femboyfinancial.jp/james/lipsync.git
synced 2024-11-21 03:59:07 -08:00
15 lines
413 B
Makefile
15 lines
413 B
Makefile
CP=cp
|
|
RM=rm
|
|
|
|
all: Boare.Lib.Vsq.dll
|
|
|
|
Boare.Lib.Vsq.dll: *.cs bocoree.dll
|
|
gmcs -recurse:*.cs -target:library -define:MONO -out:Boare.Lib.Vsq.dll -r:bocoree.dll,System,System.Windows.Forms,System.Drawing
|
|
|
|
#libvsq.exe: common.cpp TextMemoryStream.cpp VsqCommon.cpp main.cpp
|
|
# g++ common.cpp TextMemoryStream.cpp VsqCommon.cpp main.cpp -o libvsq.exe
|
|
|
|
clean:
|
|
$(RM) Boare.Lib.Vsq.dll
|
|
$(RM) bocoree.dll
|