aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMark Adler <fork@madler.net>2022-10-10 02:40:53 -0700
committerMark Adler <fork@madler.net>2022-10-10 10:30:22 -0700
commit29fd715fd0bdaffee21e2d2d37be8c5a6ac67ee4 (patch)
treefbd78d6a3e16b09d14a042babc4a476d07f967ad /Makefile.in
parent40c5a9bc06c5b0746aab270971c8cc546e3d5fc7 (diff)
downloadzlib-29fd715fd0bdaffee21e2d2d37be8c5a6ac67ee4.tar.gz
zlib-29fd715fd0bdaffee21e2d2d37be8c5a6ac67ee4.tar.bz2
zlib-29fd715fd0bdaffee21e2d2d37be8c5a6ac67ee4.zip
Turn off RWX segment warnings on sparc systems.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 1cc9f4d..2dedc44 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -22,7 +22,7 @@ CFLAGS=-O
22 22
23SFLAGS=-O 23SFLAGS=-O
24LDFLAGS= 24LDFLAGS=
25TEST_LDFLAGS=-L. libz.a 25TEST_LDFLAGS=$(LDFLAGS) -L. libz.a
26LDSHARED=$(CC) 26LDSHARED=$(CC)
27CPP=$(CC) -E 27CPP=$(CC) -E
28 28
@@ -288,10 +288,10 @@ minigzip$(EXE): minigzip.o $(STATICLIB)
288 $(CC) $(CFLAGS) -o $@ minigzip.o $(TEST_LDFLAGS) 288 $(CC) $(CFLAGS) -o $@ minigzip.o $(TEST_LDFLAGS)
289 289
290examplesh$(EXE): example.o $(SHAREDLIBV) 290examplesh$(EXE): example.o $(SHAREDLIBV)
291 $(CC) $(CFLAGS) -o $@ example.o -L. $(SHAREDLIBV) 291 $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS) -L. $(SHAREDLIBV)
292 292
293minigzipsh$(EXE): minigzip.o $(SHAREDLIBV) 293minigzipsh$(EXE): minigzip.o $(SHAREDLIBV)
294 $(CC) $(CFLAGS) -o $@ minigzip.o -L. $(SHAREDLIBV) 294 $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) -L. $(SHAREDLIBV)
295 295
296example64$(EXE): example64.o $(STATICLIB) 296example64$(EXE): example64.o $(STATICLIB)
297 $(CC) $(CFLAGS) -o $@ example64.o $(TEST_LDFLAGS) 297 $(CC) $(CFLAGS) -o $@ example64.o $(TEST_LDFLAGS)