Bell 32V development
authorTom London <tbl@research.uucp>
Wed, 14 Feb 1979 05:29:22 +0000 (00:29 -0500)
committerTom London <tbl@research.uucp>
Wed, 14 Feb 1979 05:29:22 +0000 (00:29 -0500)
Work on file usr/src/cmd/sh/Makefile

Co-Authored-By: John Reiser <jfr@research.uucp>
Synthesized-from: 32v

usr/src/cmd/sh/Makefile [new file with mode: 0644]

diff --git a/usr/src/cmd/sh/Makefile b/usr/src/cmd/sh/Makefile
new file mode 100644 (file)
index 0000000..ca06d74
--- /dev/null
@@ -0,0 +1,33 @@
+CFLAGS = -n -s -O
+
+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 $<