gpxe: delete long since obsolete snapshot of gPXE
[syslinux/sherbszt.git] / linux / Makefile
blob5a49d813de170cd16b94da6a77fcf3e87c504fe9
1 ## -----------------------------------------------------------------------
2 ##
3 ## Copyright 2001-2008 H. Peter Anvin - All Rights Reserved
4 ##
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/NTFS installer
17 include $(MAKEDIR)/syslinux.mk
19 OPTFLAGS = -g -Os
20 INCLUDES = -I$(SRC) -I$(objdir) -I$(SRC)/../libinstaller
21 CFLAGS = $(GCCWARN) -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES)
22 LDFLAGS =
24 SRCS = syslinux.c \
25 ../libinstaller/syslxopt.c \
26 ../libinstaller/syslxrw.c \
27 ../libinstaller/syslxcom.c \
28 ../libinstaller/setadv.c \
29 ../libinstaller/advio.c \
30 ../libinstaller/fs.c \
31 ../libinstaller/syslxmod.c \
32 ../libinstaller/bootsect_bin.c \
33 ../libinstaller/ldlinuxc32_bin.c \
34 ../libinstaller/ldlinux_bin.c
35 OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS)))
37 .SUFFIXES: .c .o .i .s .S
39 VPATH = $(SRC):$(SRC)/../libinstaller:$(OBJ)/../libinstaller
41 all: installer
43 tidy dist:
44 -rm -f *.o *.i *.s *.a .*.d *.tmp
46 clean: tidy
47 -rm -f syslinux syslinux-nomtools
49 spotless: clean
50 -rm -f *~
52 installer: syslinux syslinux-nomtools
54 syslinux: $(OBJS)
55 $(CC) $(LDFLAGS) -o $@ $^
57 syslinux-nomtools: syslinux
58 ln -f $< $@
60 strip:
61 $(STRIP) syslinux syslinux-nomtools
63 %.o: %.c
64 $(CC) $(UMAKEDEPS) $(CFLAGS) -c -o $@ $<
65 %.i: %.c
66 $(CC) $(UMAKEDEPS) $(CFLAGS) -E -o $@ $<
67 %.s: %.c
68 $(CC) $(UMAKEDEPS) $(CFLAGS) -S -o $@ $<
70 -include .*.d