diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-08-28 23:52:03 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-08-28 23:53:05 +0200 |
commit | c4549b057bd1c2e43579614d985b3d9bfab94141 (patch) | |
tree | d5fdc72f2cea0cba858af7cc195a045ab2e88951 /exec | |
parent | 724089f40e177e566d9a838b571f19175f9163f2 (diff) |
Do not build gzip/bzip2 support
* exec/Makefile (SRCS): Remove gzip and bzip2 sources.
(OBJS): Remove gzip and bzip2 objects.
Diffstat (limited to 'exec')
-rw-r--r-- | exec/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/exec/Makefile b/exec/Makefile index c72eb349..eb883612 100644 --- a/exec/Makefile +++ b/exec/Makefile @@ -20,11 +20,11 @@ dir := exec makemode := server -SRCS = exec.c main.c hashexec.c hostarch.c \ - $(gzip-sources) $(bzip2-sources) +SRCS = exec.c main.c hashexec.c hostarch.c +# $(gzip-sources) $(bzip2-sources) OBJS = main.o hostarch.o exec.o hashexec.o \ - execServer.o exec_startupServer.o \ - $(gzip-objects) $(bzip2-objects) + execServer.o exec_startupServer.o +# $(gzip-objects) $(bzip2-objects) gzip-sources = unzip.c util.c inflate.c gzip-objects = $(gzip-sources:%.c=%.o) bzip2-sources = do-bunzip2.c |