Changed manual page installation mechanism

This commit is contained in:
ceriel
1991-11-05 15:31:14 +00:00
parent b3f07ce236
commit 4e99d889ff
42 changed files with 122 additions and 109 deletions

View File

@@ -68,14 +68,13 @@ install: all
ls em4_???? | sed 's:em4_\(.*\):cp & $b44/em_\1:' | sh
cp em $(TARGET_HOME)/bin/em
if [ $(DO_MACHINE_INDEP) = y ] ; \
then cp em.1 $(TARGET_HOME)/man/em.1 ; \
then mk_manpage $(SRC_DIR)/em.1 $(TARGET_HOME) ; \
fi
cmp: all
-ls em2_???? | sed 's:em2_\(.*\):cmp & $b24/em_\1:' | sh
-ls em4_???? | sed 's:em4_\(.*\):cmp & $b44/em_\1:' | sh
-cmp em $(TARGET_HOME)/bin/em
-cmp em.1 $(TARGET_HOME)/man/em.1
clean:
-rm -f *.o *.old a.out em tmp.s $(INTS) compile

View File

@@ -41,7 +41,8 @@ install: all
cp em_???? $b
cp em eminform $(TARGET_HOME)/bin
if [ $(DO_MACHINE_INDEP) = y ] ; \
then cp $(SRC_DIR)/em.1 $(SRC_DIR)/eminform.1 $(TARGET_HOME)/man ; \
then mk_manpage $(SRC_DIR)/em.1 $(TARGET_HOME) ; \
mk_manpage $(SRC_DIR)/eminform.1 $(TARGET_HOME) ; \
fi
cmp: all
@@ -52,8 +53,6 @@ cmp: all
-cmp em_t--p $b/em_t--p
-cmp em $(TARGET_HOME)/bin/em
-cmp eminform $(TARGET_HOME)/bin/eminform
-cmp $(SRC_DIR)/em.1 $(TARGET_HOME)/man/em.1
-cmp $(SRC_DIR)/eminform.1 $(TARGET_HOME)/man/eminform.1
clean:
-rm -f *.o *.old a.out em eminform $(INTS)