File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ SHARED_MODE=0
40
40
PREFIX =
41
41
CC = $(PREFIX)gcc
42
42
CFLAGS = $(LOC) -O3 -Wall
43
- EXTRA_CFLAGS = -DNO_VIZ
44
43
45
44
AS = $(CC)
46
45
ASFLAGS = $(LOC) -Wall
@@ -79,7 +78,7 @@ testdll: example_d.exe minigzip_d.exe
79
78
echo hello world | ./minigzip_d | ./minigzip_d -d
80
79
81
80
.c.o:
82
- $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
81
+ $(CC) $(CFLAGS) -c -o $@ $<
83
82
84
83
.S.o:
85
84
$(AS) $(ASFLAGS) -c -o $@ $<
@@ -111,10 +110,10 @@ minigzip_d.exe: minigzip.o $(IMPLIB)
111
110
$(STRIP) $@
112
111
113
112
example.o: test/example.c zlib.h zconf.h
114
- $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -I. -c -o $@ test/example.c
113
+ $(CC) $(CFLAGS) -I. -c -o $@ test/example.c
115
114
116
115
minigzip.o: test/minigzip.c zlib.h zconf.h
117
- $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -I. -c -o $@ test/minigzip.c
116
+ $(CC) $(CFLAGS) -I. -c -o $@ test/minigzip.c
118
117
119
118
zlibrc.o: win32/zlib1.rc
120
119
$(RC) $(RCFLAGS) -o $@ win32/zlib1.rc
You can’t perform that action at this time.
0 commit comments