2008-07-28 Pavel Roskin <proski@gnu.org>
* genmk.rb: Add a warning to the beginning of the output that it's a generated file and should not be edited.
This commit is contained in:
parent
96cdbeff6a
commit
cfd0b4e6fa
10 changed files with 17 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-07-28 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* genmk.rb: Add a warning to the beginning of the output that
|
||||
it's a generated file and should not be edited.
|
||||
|
||||
2008-07-28 Robert Millan <rmh@aybabtu.com>
|
||||
|
||||
* disk/raid.c (grub_raid_scan_device): Do not abort when two disks
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- makefile -*-
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
|
||||
# For grub-probe.
|
||||
sbin_UTILITIES += grub-probe
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- makefile -*-
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
|
||||
COMMON_ASFLAGS = -m32 -nostdinc -fno-builtin
|
||||
COMMON_CFLAGS = -ffreestanding -mrtd -mregparm=3
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- makefile -*-
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
|
||||
COMMON_ASFLAGS = -nostdinc -fno-builtin -m32
|
||||
COMMON_CFLAGS = -fno-builtin -m32
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- makefile -*-
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
|
||||
COMMON_ASFLAGS = -m32 -nostdinc -fno-builtin
|
||||
COMMON_CFLAGS = -ffreestanding -mrtd -mregparm=3
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- makefile -*-
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
|
||||
GRUB_MEMORY_MACHINE_LINK_ADDR = 0x8200
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
# -*- makefile -*-
|
||||
|
||||
COMMON_ASFLAGS = -nostdinc -D__ASSEMBLY__
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
# -*- makefile -*-
|
||||
|
||||
COMMON_ASFLAGS = -nostdinc
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# -*- makefile -*-
|
||||
# Generated by genmk.rb, please don't edit!
|
||||
|
||||
COMMON_ASFLAGS = -nostdinc -fno-builtin -m64
|
||||
COMMON_CFLAGS = -fno-builtin -m64
|
||||
|
|
4
genmk.rb
4
genmk.rb
|
@ -286,6 +286,10 @@ pmodules = []
|
|||
programs = []
|
||||
scripts = []
|
||||
|
||||
l = gets
|
||||
print l
|
||||
print "# Generated by genmk.rb, please don't edit!\n"
|
||||
|
||||
cont = false
|
||||
s = nil
|
||||
while l = gets
|
||||
|
|
Loading…
Reference in a new issue