BSD 4_3 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 30 Jun 1983 20:48:58 +0000 (12:48 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 30 Jun 1983 20:48:58 +0000 (12:48 -0800)
Work on file usr/src/bin/sh/Makefile

Synthesized-from: CSRG/cd1/4.3

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

diff --git a/usr/src/bin/sh/Makefile b/usr/src/bin/sh/Makefile
new file mode 100644 (file)
index 0000000..1f52a7e
--- /dev/null
@@ -0,0 +1,33 @@
+#      Makefile        4.5     83/07/01
+#
+CFLAGS = -O -w
+
+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 *.o
+
+install:
+       install -s sh $(DESTDIR)/bin
+clean:
+       rm -f sh *.o