blob: d2a34bbded1d7c08d14c3ae5c9a7534ae56de162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
--- a/Makefile
+++ b/Makefile
@@ -69,18 +69,7 @@
-DMDPRAID -DDEVMAPPER
-# set the following if you wish LILO.COM to be installed
-DOS_DIR=/dosC/boot
-#
-# select one of the following to place the man pages in the right place
-#MAN_DIR=`if [ -z "$(whereis lilo | grep 'lilo.8')" ]; then \
-# whereis lilo | sed -e "sX.* /usrX/usrX" -e "sX/man8/lilo.8.*XX" ; \
-# elif [ -f /usr/bin/manpath ]; then \
-# manpath | sed "s/:.*//"; else echo /usr/man; fi`
-#
-MAN_DIR=`if [ -f /usr/bin/manpath ]; then \
- manpath | sed "s/:.*//"; else echo /usr/share/man; fi`
-#MAN_DIR=/usr/share/man
+MAN_DIR=/usr/share/man
# set the compiler optimization level
@@ -165,10 +154,7 @@
#
# everything needed to run, just short of installation
#
-all: lilo bootsect.b diag1.img # OBSOLETE: $(BOOTS) edit dparam.com activate
- if [ -x /usr/bin/bcc -o -x /usr/local/bin/bcc ]; then \
- make diagnostic; \
- make dosexe; fi
+all: lilo
#
# everything above plus the statically linked version
@@ -452,7 +438,6 @@
rm -f $$ROOT$(BOOT_DIR)/boot.b; fi
cp mkrescue $$ROOT$(SBIN_DIR)
cp lilo $$ROOT$(SBIN_DIR)
- strip $$ROOT$(SBIN_DIR)/lilo
cp keytab-lilo.pl $$ROOT$(USRSBIN_DIR)
cp manPages/lilo.8 $$ROOT$(MAN_DIR)/man8
cp manPages/mkrescue.8 $$ROOT$(MAN_DIR)/man8
|