BSD 4_3_Reno development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 2 Feb 1984 14:53:26 +0000 (06:53 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Thu, 2 Feb 1984 14:53:26 +0000 (06:53 -0800)
Work on file usr/src/pgrm/lisp/utils/Makefile

Synthesized-from: CSRG/cd2/4.3reno

usr/src/pgrm/lisp/utils/Makefile [new file with mode: 0644]

diff --git a/usr/src/pgrm/lisp/utils/Makefile b/usr/src/pgrm/lisp/utils/Makefile
new file mode 100644 (file)
index 0000000..1927251
--- /dev/null
@@ -0,0 +1,26 @@
+# $Header: Makefile,v 1.1 83/04/20 10:29:24 sklower Exp $
+# $Locker: jkf $
+
+LibDir = /usr/lib/lisp
+AllSrc = Makefile append.c tackon.c
+
+AllObj = ${LibDir}/append ${LibDir}/tackon
+
+all: ${LibDir}/append ${LibDir}/tackon
+
+${LibDir}/append: append.c
+       cc -O -o ${LibDir}/append  -I../franz/h append.c
+
+${LibDir}/tackon: tackon.c
+       cc -O -o ${LibDir}/tackon -I../franz/h tackon.c
+
+copysource: ${AllSrc}
+       (tar cf - ${AllSrc} | (cd ${CopyTo} ; tar xf -))
+
+
+scriptcatall: ${AllSrc}
+       @../scriptcat . utils ${AllSrc}
+
+
+clean:
+       rm ${AllObj}