diff options
author | Timo Teras <timo.teras@iki.fi> | 2008-11-07 17:11:08 +0200 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2008-11-07 17:11:08 +0200 |
commit | aef0f036f08f8949e4e2a5b84c9199ef8ec40595 (patch) | |
tree | 423ba9a4e5db4b8b38b6ccf2578c8c205ff7db4d /src/Makefile | |
parent | 6967c28b96784d474e6c2f50b075895d89f9ce02 (diff) | |
download | aports-aef0f036f08f8949e4e2a5b84c9199ef8ec40595.tar.bz2 aports-aef0f036f08f8949e4e2a5b84c9199ef8ec40595.tar.xz |
use zlib internally to decompress
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 15eeb00e51..62041c2663 100644 --- a/src/Makefile +++ b/src/Makefile @@ -15,6 +15,8 @@ apk_OBJS = \ package.o \ archive.o \ version.o \ + io.o \ + gunzip.o \ blob.o \ hash.o \ md5.o \ @@ -30,7 +32,7 @@ ALL_OBJS = $(apk_OBJS) all: $(TARGETS) apk: $(apk_OBJS) - $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) + $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) /usr/lib/libz.a clean:: @rm -f $(TARGETS) $(ALL_OBJS) |