1 ## -----------------------------------------------------------------------
3 ## Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 ## Boston MA 02111-1307, USA; either version 2 of the License, or
9 ## (at your option) any later version; incorporated herein by reference.
11 ## -----------------------------------------------------------------------
14 ## Linux FAT installer
18 include $(topdir
)/MCONFIG
21 INCLUDES
= -I.
-I..
-I..
/libinstaller
22 CFLAGS
= -W
-Wall
-D_FILE_OFFSET_BITS
=64 $(OPTFLAGS
) $(INCLUDES
)
26 ..
/libinstaller
/syslxmod.c \
27 ..
/libinstaller
/bootsect_bin.c \
28 ..
/libinstaller
/ldlinux_bin.c
29 OBJS
= $(patsubst %.c
,%.o
,$(notdir $(SRCS
)))
31 .SUFFIXES
: .c .o .i .s .S
33 VPATH
= .
:..
/libinstaller
38 -rm -f
*.o
*.i
*.s
*.a .
*.d
*.tmp
41 -rm -f syslinux syslinux-nomtools
46 installer
: syslinux syslinux-nomtools
49 $(CC
) $(LDFLAGS
) -o
$@
$^
51 syslinux-nomtools
: syslinux
55 $(CC
) -Wp
,-MT
,$@
,-MMD
,.
$@.d
$(CFLAGS
) -c
-o
$@
$<
57 $(CC
) $(CFLAGS
) -E
-o
$@
$<
59 $(CC
) $(CFLAGS
) -S
-o
$@
$<