From: Bill Joy Date: Wed, 5 Mar 1980 00:18:35 +0000 (-0800) Subject: BSD 4 development X-Git-Tag: BSD-4~489 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/d0342acf8ce77b03b032723e69a201399a678c53 BSD 4 development Work on file usr/src/cmd/sh/Makefile Synthesized-from: CSRG//cd1/4.0 --- diff --git a/usr/src/cmd/sh/Makefile b/usr/src/cmd/sh/Makefile new file mode 100644 index 0000000000..c1bbef0e25 --- /dev/null +++ b/usr/src/cmd/sh/Makefile @@ -0,0 +1,33 @@ +CFLAGS = -n -O -g + +all: sh + +cp: sh + cp sh /bin/sh + rm sh *.o + +cmp: sh + cmp sh /bin/sh + rm sh *.o + +sh: setbrk.o +sh: builtin.o blok.o stak.o +sh: cmd.o fault.o main.o +sh: word.o string.o name.o args.o +sh: xec.o service.o error.o io.o +sh: print.o macro.o expand.o +sh: ctype.o msg.o +blok.o: brkincr.h +fault.o: brkincr.h +main.o: brkincr.h +stak.o: brkincr.h + +sh:; cc -o sh -n *.o + +newsys:; :newsys file=msg; make sh +install:; install -s sh $(DESTDIR)/bin +clean:; rm -f sh *.o +diff:; :diff +list:; list Makefile *.h *.s *.c + +.c.o:; cc -O -c $<