mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
Initial commit.
This commit is contained in:
20
Makefile
Normal file
20
Makefile
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
Reference in New Issue
Block a user