mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 21:55:34 +08:00
21 lines
527 B
Makefile
21 lines
527 B
Makefile
|
MSCS = D:/WINDOWS/Microsoft.NET/Framework/v4.0.30319/csc //nologo
|
||
|
|
||
|
.SUFFIXES: .cs .exe
|
||
|
|
||
|
all: GARbro
|
||
|
|
||
|
adler32: adler32.cs
|
||
|
$(MSCS) $(MSCSFLAGS) //out:$@.exe $^
|
||
|
|
||
|
inflate: inflate.cs
|
||
|
$(MSCS) $(MSCSFLAGS) //out:$@.exe $^ //r:zlib\\zlibnet.dll
|
||
|
|
||
|
deflate: deflate.cs
|
||
|
$(MSCS) $(MSCSFLAGS) //out:$@.exe $^ //r:zlib\\zlibnet.dll
|
||
|
|
||
|
GARbro: Program.cs GameRes.cs ArcXFL.cs
|
||
|
$(MSCS) $(MSCSFLAGS) //out:$@.exe $^ //r:System.ComponentModel.Composition.dll //r:System.ComponentModel.DataAnnotations.dll
|
||
|
|
||
|
tags:
|
||
|
ctags *.cs
|