BSD 4_4 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Tue, 26 Nov 1991 00:11:15 +0000 (16:11 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Tue, 26 Nov 1991 00:11:15 +0000 (16:11 -0800)
Work on file usr/src/contrib/mkmf/templates/C.L
Work on file usr/src/contrib/mkmf/templates/C++.L

Synthesized-from: CSRG/cd3/4.4

usr/src/contrib/mkmf/templates/C++.L [new file with mode: 0644]
usr/src/contrib/mkmf/templates/C.L [new file with mode: 0644]

diff --git a/usr/src/contrib/mkmf/templates/C++.L b/usr/src/contrib/mkmf/templates/C++.L
new file mode 100644 (file)
index 0000000..2de5bd1
--- /dev/null
@@ -0,0 +1,48 @@
+CXXFLAGS      =
+
+DEST         = .
+
+EXTHDRS              =
+
+HDRS         =
+
+INSTALL              = cp
+
+LIBRARY              = lib.a
+
+MAKEFILE      = Makefile
+
+OBJS         =
+
+PRINT        = pr
+
+SHELL        = /bin/sh
+
+SRCS         =
+
+SYSHDRS              =
+
+all:           $(LIBRARY)
+
+$(LIBRARY):    $(OBJS)
+
+clean:;                @rm -f core
+
+clobber:;      @rm -f $(LIBRARY) core tags
+
+depend:;       @mkmf -f $(MAKEFILE)
+
+echo:;         @echo $(HDRS) $(SRCS)
+
+extract:;      @ar x $(DEST)/$(LIBRARY)
+
+index:;                @ctags -wx $(HDRS) $(SRCS)
+
+install:       $(LIBRARY)
+               @echo Installing $(LIBRARY) in $(DEST)
+               @if [ $(DEST) != . ]; then \
+               (rm -f $(DEST)/$(LIBRARY); $(INSTALL) $(LIBRARY) $(DEST)); fi
+
+print:;                @$(PRINT) $(HDRS) $(SRCS)
+
+tags:           $(HDRS) $(SRCS); @ctags $(HDRS) $(SRCS)
diff --git a/usr/src/contrib/mkmf/templates/C.L b/usr/src/contrib/mkmf/templates/C.L
new file mode 100644 (file)
index 0000000..b157a18
--- /dev/null
@@ -0,0 +1,48 @@
+CFLAGS       =
+
+DEST         = .
+
+EXTHDRS              =
+
+HDRS         =
+
+INSTALL              = cp
+
+LIBRARY              = lib.a
+
+MAKEFILE      = Makefile
+
+OBJS         =
+
+PRINT        = pr
+
+SHELL        = /bin/sh
+
+SRCS         =
+
+SYSHDRS              =
+
+all:           $(LIBRARY)
+
+$(LIBRARY):    $(OBJS)
+
+clean:;                @rm -f core
+
+clobber:;      @rm -f $(LIBRARY) core tags
+
+depend:;       @mkmf -f $(MAKEFILE)
+
+echo:;         @echo $(HDRS) $(SRCS)
+
+extract:;      @ar x $(DEST)/$(LIBRARY)
+
+index:;                @ctags -wx $(HDRS) $(SRCS)
+
+install:       $(LIBRARY)
+               @echo Installing $(LIBRARY) in $(DEST)
+               @if [ $(DEST) != . ]; then \
+               (rm -f $(DEST)/$(LIBRARY); $(INSTALL) $(LIBRARY) $(DEST)); fi
+
+print:;                @$(PRINT) $(HDRS) $(SRCS)
+
+tags:           $(HDRS) $(SRCS); @ctags $(HDRS) $(SRCS)