Initial commit.

This commit is contained in:
Poddav
2014-07-21 23:26:28 +04:00
commit e208029dd3
102 changed files with 14809 additions and 0 deletions

20
Makefile Normal file
View 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