home *** CD-ROM | disk | FTP | other *** search
- --- Makefile.orig Fri Jan 31 17:21:03 1997
- +++ Makefile Fri Jan 31 17:26:26 1997
- @@ -12,7 +12,7 @@
- # DIR is the main/top-level directory.
- # If you change DIR, run "make reconfig".
- #
- -DIR = /usr/usc
- +DIR = <installdir>
-
- #
- # BIN is were the "qterm" binary gets installed.
- @@ -28,7 +28,7 @@
- # TABFILE should be set to the location you want the qterm table
- # file placed in.
- #
- -TABFILE = $(DIR)/lib/qtermtab
- +TABFILE = <installsharedir>/slib/qtermtab
-
- #
- # Add "-DUSG5" to DEFS below, if your system is Unix System V.
- @@ -72,14 +72,13 @@
- # Install target for BSD machines.
- #
- install: qterm qterm.1 qtermtab
- - install -c -m 755 qterm $(BIN)
- - install -c -m 644 qterm.1 $(MAN)
- - install -c -m 644 qtermtab $(TABFILE)
- -
- + cp qterm $(BIN); chmod 755 $(BIN)/qterm
- + cp qterm.1 $(MAN); chmod 644 $(MAN)/qterm.1
- + cp qtermtab $(TABFILE); chmod 644 $(TABFILE)
- #
- # Install target for System V machines.
- #
- install.usg5: qterm qterm.1 qtermtab
- - cp qterm $(BIN); chmod 755 $(BIN)/qterm
- - cp qterm.1 $(MAN); chmod 644 $(MAN)/qterm.1
- - cp qtermtab $(TABFILE); chmod 644 $(TABFILE)
- + cp qterm $(BIN)
- + cp qterm.1 $(MAN)
- + cp qtermtab $(TABFILE)
-