diff options
author | Roland McGrath <roland@gnu.org> | 1994-12-14 04:32:53 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-12-14 04:32:53 +0000 |
commit | f69200c2e94600d8b704383a537029cc42ca075a (patch) | |
tree | e67eabffb75df0ab6ecd6f5b943975c5fa10d60a /exec/Makefile | |
parent | 1c0f6b1853ced036bf11a5622636dac362a7481a (diff) |
(OBJS): Add unzip.o util.o inflate.o.
(LCLHDRS): Add gzip.h crypt.h tailor.h.
(unzip.o util.o inflate.o): Depend on those.
(CFLAGS): Use +=.
Diffstat (limited to 'exec/Makefile')
-rw-r--r-- | exec/Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/exec/Makefile b/exec/Makefile index 3600d9ae..0e593211 100644 --- a/exec/Makefile +++ b/exec/Makefile @@ -19,16 +19,20 @@ dir := exec makemode := server SRCS = exec.c hostarch.c -OBJS = hostarch.o exec.o execServer.o fsysServer.o notifyServer.o -LCLHDRS = a.out.h a.out.gnu.h +OBJS = hostarch.o exec.o execServer.o fsysServer.o notifyServer.o \ + unzip.o util.o inflate.o +LCLHDRS = a.out.h a.out.gnu.h gzip.h crypt.h tailor.h target = exec DIST_FILES = core.c gcore.c hashexec.c include ../Makeconf -CFLAGS := $(CFLAGS) -DA_OUT_H=\"./a.out.h\" +CFLAGS += -DA_OUT_H=\"./a.out.h\" -exec.o: fsys_S.h notify_S.h exec_S.h +exec.o bfdexec.o: fsys_S.h notify_S.h exec_S.h exec.o hostarch.o: a.out.h a.out.gnu.h +bfdexec: bfdhostarch.o -lbfd + +unzip.o util.o inflate.o: gzip.h crypt.h tailor.h |