summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-10-09 09:50:48 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-10-09 09:50:48 -0700
commit1bd2fa1b241d24dc444f17d217429780f0b657c0 (patch)
tree833a967a97b573bb95c429ed2eca987a8dc960cf /Makefile.in
parent77b47d55f14be032c0ee10da44bbe7591be0abd8 (diff)
downloadzlib-1bd2fa1b241d24dc444f17d217429780f0b657c0.tar.gz
Move example.c and minigzip.c to examples/ directory.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in14
1 files changed, 10 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index c1c37fe..1b8bf3f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -126,11 +126,17 @@ match.lo: match.S
mv _match.o match.lo
rm -f _match.s
-example64.o: example.c zlib.h zconf.h
- $(CC) $(CFLAGS) -D_FILE_OFFSET_BITS=64 -c -o $@ example.c
+example.o: examples/example.c zlib.h zconf.h
+ $(CC) $(CFLAGS) -I. -c -o $@ examples/example.c
-minigzip64.o: minigzip.c zlib.h zconf.h
- $(CC) $(CFLAGS) -D_FILE_OFFSET_BITS=64 -c -o $@ minigzip.c
+minigzip.o: examples/minigzip.c zlib.h zconf.h
+ $(CC) $(CFLAGS) -I. -c -o $@ examples/minigzip.c
+
+example64.o: examples/example.c zlib.h zconf.h
+ $(CC) $(CFLAGS) -I. -D_FILE_OFFSET_BITS=64 -c -o $@ examples/example.c
+
+minigzip64.o: examples/minigzip.c zlib.h zconf.h
+ $(CC) $(CFLAGS) -I. -D_FILE_OFFSET_BITS=64 -c -o $@ examples/minigzip.c
.SUFFIXES: .lo