search for: unzipsrc

Displaying 3 results from an estimated 3 matches for "unzipsrc".

Did you mean: unzipsrcs
2005 Jul 31
0
[patch] kbuild: build all targets in gzip
...ild file for gzip +# +# The gzip executable user-progs := gzip -gzip-y := gzip.o util.o unzip.o inflate.o +gzip-y := gzip.o util.o unzip.o inflate.o -ifeq (a,b) +# Additional targets +always := gunzip zcat gzip.stripped -Kept for convinience -ZIPSRCS = zip.c deflate.c trees.c bits.c -UNZIPSRCS = unzip.c inflate.c +# Optional ZIP support +gzip-$(CONFIG_KLIB_ZIP) += zip.o deflate.o trees.o bits.o +cflags-$(CONFIG_KLIB_ZIP) += -DSUPPORT_ZIP +EXTRA_USERCFLAGS := $(cflags-y) -SRCS = gzip.c util.c $(UNZIPSRCS) -OBJS = $(SRCS:.c=.o) -HDRS = gzip.h tailor.h revision.h -LIBS = $(KLIBC) $(LIB...
2005 Jul 26
2
[PATCH] better kbuild integration
...alls/Kbuild $kernel/usr/klibc/syscalls diff --git a/gzip/Kbuild b/gzip/Kbuild new file mode 100644 --- /dev/null +++ b/gzip/Kbuild @@ -0,0 +1,49 @@ + +user-progs := gzip +gzip-y := gzip.o util.o unzip.o inflate.o + +ifeq (a,b) + +Kept for convinience +ZIPSRCS = zip.c deflate.c trees.c bits.c +UNZIPSRCS = unzip.c inflate.c + +SRCS = gzip.c util.c $(UNZIPSRCS) +OBJS = $(SRCS:.c=.o) +HDRS = gzip.h tailor.h revision.h +LIBS = $(KLIBC) $(LIBGCC) + +ifeq ($(ZIP),y) +DEFS += -DSUPPORT_ZIP +SRCS += $(ZIPSRCS) +endif + +all: gzip gunzip zcat gzip.stripped + +# Actual build-related targets + +gzip: Makefi...
2005 Jul 30
3
kbuild updates to klibc
Hi Peter & others. Here are three patches that does the following: #1 - Update kbuild part of klibc so make clean works Adds gzip including a sample kbuild file #2 - Factor out definition of usr/ to two variables #3 - Move kbuild files to reflect location in the kernel As requested in earlier mail I need a bit of guidiance of what you expect from the kernel integrated parts of klibc.