aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc126
1 files changed, 63 insertions, 63 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc b/libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc
index 799a18a..6a628a7 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc
+++ b/libraries/irrlicht-1.8/source/Irrlicht/bzip2/makefile.msc
@@ -1,63 +1,63 @@
1# Makefile for Microsoft Visual C++ 6.0 1# Makefile for Microsoft Visual C++ 6.0
2# usage: nmake -f makefile.msc 2# usage: nmake -f makefile.msc
3# K.M. Syring (syring@gsf.de) 3# K.M. Syring (syring@gsf.de)
4# Fixed up by JRS for bzip2-0.9.5d release. 4# Fixed up by JRS for bzip2-0.9.5d release.
5 5
6CC=cl 6CC=cl
7CFLAGS= -DWIN32 -MD -Ox -D_FILE_OFFSET_BITS=64 -nologo 7CFLAGS= -DWIN32 -MD -Ox -D_FILE_OFFSET_BITS=64 -nologo
8 8
9OBJS= blocksort.obj \ 9OBJS= blocksort.obj \
10 huffman.obj \ 10 huffman.obj \
11 crctable.obj \ 11 crctable.obj \
12 randtable.obj \ 12 randtable.obj \
13 compress.obj \ 13 compress.obj \
14 decompress.obj \ 14 decompress.obj \
15 bzlib.obj 15 bzlib.obj
16 16
17all: lib bzip2 test 17all: lib bzip2 test
18 18
19bzip2: lib 19bzip2: lib
20 $(CC) $(CFLAGS) -o bzip2 bzip2.c libbz2.lib setargv.obj 20 $(CC) $(CFLAGS) -o bzip2 bzip2.c libbz2.lib setargv.obj
21 $(CC) $(CFLAGS) -o bzip2recover bzip2recover.c 21 $(CC) $(CFLAGS) -o bzip2recover bzip2recover.c
22 22
23lib: $(OBJS) 23lib: $(OBJS)
24 lib /out:libbz2.lib $(OBJS) 24 lib /out:libbz2.lib $(OBJS)
25 25
26test: bzip2 26test: bzip2
27 type words1 27 type words1
28 .\\bzip2 -1 < sample1.ref > sample1.rb2 28 .\\bzip2 -1 < sample1.ref > sample1.rb2
29 .\\bzip2 -2 < sample2.ref > sample2.rb2 29 .\\bzip2 -2 < sample2.ref > sample2.rb2
30 .\\bzip2 -3 < sample3.ref > sample3.rb2 30 .\\bzip2 -3 < sample3.ref > sample3.rb2
31 .\\bzip2 -d < sample1.bz2 > sample1.tst 31 .\\bzip2 -d < sample1.bz2 > sample1.tst
32 .\\bzip2 -d < sample2.bz2 > sample2.tst 32 .\\bzip2 -d < sample2.bz2 > sample2.tst
33 .\\bzip2 -ds < sample3.bz2 > sample3.tst 33 .\\bzip2 -ds < sample3.bz2 > sample3.tst
34 @echo All six of the fc's should find no differences. 34 @echo All six of the fc's should find no differences.
35 @echo If fc finds an error on sample3.bz2, this could be 35 @echo If fc finds an error on sample3.bz2, this could be
36 @echo because WinZip's 'TAR file smart CR/LF conversion' 36 @echo because WinZip's 'TAR file smart CR/LF conversion'
37 @echo is too clever for its own good. Disable this option. 37 @echo is too clever for its own good. Disable this option.
38 @echo The correct size for sample3.ref is 120,244. If it 38 @echo The correct size for sample3.ref is 120,244. If it
39 @echo is 150,251, WinZip has messed it up. 39 @echo is 150,251, WinZip has messed it up.
40 fc sample1.bz2 sample1.rb2 40 fc sample1.bz2 sample1.rb2
41 fc sample2.bz2 sample2.rb2 41 fc sample2.bz2 sample2.rb2
42 fc sample3.bz2 sample3.rb2 42 fc sample3.bz2 sample3.rb2
43 fc sample1.tst sample1.ref 43 fc sample1.tst sample1.ref
44 fc sample2.tst sample2.ref 44 fc sample2.tst sample2.ref
45 fc sample3.tst sample3.ref 45 fc sample3.tst sample3.ref
46 46
47 47
48 48
49clean: 49clean:
50 del *.obj 50 del *.obj
51 del libbz2.lib 51 del libbz2.lib
52 del bzip2.exe 52 del bzip2.exe
53 del bzip2recover.exe 53 del bzip2recover.exe
54 del sample1.rb2 54 del sample1.rb2
55 del sample2.rb2 55 del sample2.rb2
56 del sample3.rb2 56 del sample3.rb2
57 del sample1.tst 57 del sample1.tst
58 del sample2.tst 58 del sample2.tst
59 del sample3.tst 59 del sample3.tst
60 60
61.c.obj: 61.c.obj:
62 $(CC) $(CFLAGS) -c $*.c -o $*.obj 62 $(CC) $(CFLAGS) -c $*.c -o $*.obj
63 63