forked from pool/memtest86_
25 lines
545 B
Plaintext
25 lines
545 B
Plaintext
diff -ur memtest86+-1.70.orig/Makefile memtest86+-1.70/Makefile
|
|
--- memtest86+-1.70.orig/Makefile 2006-12-27 02:34:57.000000000 +0100
|
|
+++ memtest86+-1.70/Makefile 2007-01-25 16:34:01.000000000 +0100
|
|
@@ -7,6 +7,7 @@
|
|
# Path for the floppy disk device
|
|
#
|
|
FDISK=/dev/fd0
|
|
+TARGETDIR=/boot
|
|
|
|
CC=gcc
|
|
#
|
|
@@ -116,7 +117,10 @@
|
|
wormkill:
|
|
rm -f *~
|
|
|
|
-install: all
|
|
+install:
|
|
+ install -o root -g root memtest.bin $(DESTDIR)$(TARGETDIR)/
|
|
+
|
|
+install-floppy: all
|
|
dd <memtest.bin >$(FDISK) bs=8192
|
|
|
|
install-bin:
|
|
Only in memtest86+-1.70: Makefile.orig
|