BSD 4_3_Tahoe development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Wed, 25 Jun 1986 02:51:33 +0000 (18:51 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Wed, 25 Jun 1986 02:51:33 +0000 (18:51 -0800)
Work on file usr/src/new/xns/examples/retrieve/Makefile
Work on file usr/src/new/xns/examples/retrieve/Makefile,v
Work on file usr/src/new/xns/xnslib/except/Makefile
Work on file usr/src/new/xns/xnslib/except/Makefile,v

Synthesized-from: CSRG/cd2/4.3tahoe

usr/src/new/xns/examples/retrieve/Makefile [new file with mode: 0644]
usr/src/new/xns/examples/retrieve/Makefile,v [new file with mode: 0644]
usr/src/new/xns/xnslib/except/Makefile [new file with mode: 0644]
usr/src/new/xns/xnslib/except/Makefile,v [new file with mode: 0644]

diff --git a/usr/src/new/xns/examples/retrieve/Makefile b/usr/src/new/xns/examples/retrieve/Makefile
new file mode 100644 (file)
index 0000000..df6c72e
--- /dev/null
@@ -0,0 +1,22 @@
+CFLAGS=-g
+
+retrieve: retrieve.o
+       ${CC} -g -o retrieve retrieve.o  -lcourier
+
+retrieve.o: Clearinghouse2_defs.h
+
+Clearinghouse2_defs.h: Clearinghouse2.h
+       cp ../../courierlib/Clearinghouse2_defs.h .
+
+Clearinghouse2.h:
+       cp ../../courierlib/Clearinghouse2.h .
+
+clean:
+       -rm -f *.o *.BAK *.CKP retrieve Clearinghouse2_defs.h \
+               Clearinghouse2_support.c Clearinghouse2.h\
+               Clearinghouse2_client.c Clearinghouse2_server.c
+
+rcs:
+
+install: retrieve
+
diff --git a/usr/src/new/xns/examples/retrieve/Makefile,v b/usr/src/new/xns/examples/retrieve/Makefile,v
new file mode 100644 (file)
index 0000000..b4ed881
--- /dev/null
@@ -0,0 +1,46 @@
+head     1.1;
+access   ;
+symbols  ;
+locks    ; strict;
+comment  @# @;
+
+
+1.1
+date     86.06.25.12.51.27;  author jqj;  state Exp;
+branches ;
+next     ;
+
+
+desc
+@@
+
+
+
+1.1
+log
+@Initial revision
+@
+text
+@CFLAGS=-g
+
+retrieve: retrieve.o
+       ${CC} -g -o retrieve retrieve.o  -lcourier
+
+retrieve.o: Clearinghouse2_defs.h
+
+Clearinghouse2_defs.h: Clearinghouse2.h
+       cp ../../courierlib/Clearinghouse2_defs.h .
+
+Clearinghouse2.h:
+       cp ../../courierlib/Clearinghouse2.h .
+
+clean:
+       -rm -f *.o *.BAK *.CKP retrieve Clearinghouse2_defs.h \
+               Clearinghouse2_support.c Clearinghouse2.h\
+               Clearinghouse2_client.c Clearinghouse2_server.c
+
+rcs:
+
+install: retrieve
+
+@
diff --git a/usr/src/new/xns/xnslib/except/Makefile b/usr/src/new/xns/xnslib/except/Makefile
new file mode 100644 (file)
index 0000000..34ccecc
--- /dev/null
@@ -0,0 +1,50 @@
+# makefile for "except" - C exception handling
+#
+# Jeffrey Mogul                Stanford        4 March 1983
+#
+#
+CFLAGS = -O
+DESTDIR = /usr/local/lib
+INCLUDEDIR = /usr/include
+
+all: libexcept.a libexcept_p.a
+
+install: install.lib install.man
+
+install.man:
+       rm -f /us/man/man3/except.3
+       cp except.3 /usr/man/man3
+
+except.o except_p.o: except.c except.h
+       ${CC} $(CFLAGS) -c -p except.c
+       mv except.o except_p.o
+       ${CC} $(CFLAGS) -c except.c
+
+libexcept.a: except.o
+       ar cr libexcept.a except.o
+       ranlib libexcept.a
+
+libexcept_p.a: except_p.o
+       ar cr libexcept_p.a except_p.o
+       ranlib libexcept_p.a
+
+install.lib: libexcept.a libexcept_p.a
+       rm -f $(DESTDIR)/libexcept.a $(DESTDIR)/libexcept_p.a \
+                       $(INCLUDEDIR)/except.h
+       install libexcept.a $(DESTDIR)
+       ranlib $(DESTDIR)/libexcept.a
+       install libexcept_p.a $(DESTDIR)
+       ranlib $(DESTDIR)/libexcept_p.a
+       cp except.h $(INCLUDEDIR)
+
+clean:
+       rm -f *.BAK *.CKP *.o *.a *.tar core a.out test
+
+distrib: clean
+       tar cf except.tar `ls|grep -v tar`
+
+test: test.o libexcept.a
+       ${CC} -o test test.o libexcept.a
+
+test.o: test.c except.h
+       ${CC} -c test.c -I.
diff --git a/usr/src/new/xns/xnslib/except/Makefile,v b/usr/src/new/xns/xnslib/except/Makefile,v
new file mode 100644 (file)
index 0000000..15eb8a8
--- /dev/null
@@ -0,0 +1,74 @@
+head     1.1;
+access   ;
+symbols  ;
+locks    ; strict;
+comment  @# @;
+
+
+1.1
+date     86.06.25.12.51.33;  author jqj;  state Exp;
+branches ;
+next     ;
+
+
+desc
+@@
+
+
+
+1.1
+log
+@Initial revision
+@
+text
+@# makefile for "except" - C exception handling
+#
+# Jeffrey Mogul                Stanford        4 March 1983
+#
+#
+CFLAGS = -O
+DESTDIR = /usr/local/lib
+INCLUDEDIR = /usr/include
+
+all: libexcept.a libexcept_p.a
+
+install: install.lib install.man
+
+install.man:
+       rm -f /us/man/man3/except.3
+       cp except.3 /usr/man/man3
+
+except.o except_p.o: except.c except.h
+       ${CC} $(CFLAGS) -c -p except.c
+       mv except.o except_p.o
+       ${CC} $(CFLAGS) -c except.c
+
+libexcept.a: except.o
+       ar cr libexcept.a except.o
+       ranlib libexcept.a
+
+libexcept_p.a: except_p.o
+       ar cr libexcept_p.a except_p.o
+       ranlib libexcept_p.a
+
+install.lib: libexcept.a libexcept_p.a
+       rm -f $(DESTDIR)/libexcept.a $(DESTDIR)/libexcept_p.a \
+                       $(INCLUDEDIR)/except.h
+       install libexcept.a $(DESTDIR)
+       ranlib $(DESTDIR)/libexcept.a
+       install libexcept_p.a $(DESTDIR)
+       ranlib $(DESTDIR)/libexcept_p.a
+       cp except.h $(INCLUDEDIR)
+
+clean:
+       rm -f *.BAK *.CKP *.o *.a *.tar core a.out test
+
+distrib: clean
+       tar cf except.tar `ls|grep -v tar`
+
+test: test.o libexcept.a
+       ${CC} -o test test.o libexcept.a
+
+test.o: test.c except.h
+       ${CC} -c test.c -I.
+@