source: bootcd/isolinux/syslinux-6.03/extlinux/Makefile

Last change on this file was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[e16e8f2]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.
10##
11## -----------------------------------------------------------------------
12
13##
14## Linux vfat, ntfs, ext2/ext3/ext4 and btrfs installer
15##
16
17include $(MAKEDIR)/syslinux.mk
18
19OPTFLAGS = -g -Os
20INCLUDES = -I$(SRC) -I$(objdir) -I$(SRC)/../libinstaller
21CFLAGS   = $(GCCWARN) -Wno-sign-compare -D_FILE_OFFSET_BITS=64 \
22           $(OPTFLAGS) $(INCLUDES)
23LDFLAGS  =
24
25SRCS     = main.c \
26           mountinfo.c \
27           ../libinstaller/syslxmod.c \
28           ../libinstaller/syslxopt.c \
29           ../libinstaller/syslxcom.c \
30           ../libinstaller/setadv.c \
31           ../libinstaller/advio.c \
32           ../libinstaller/bootsect_bin.c \
33           ../libinstaller/ldlinuxc32_bin.c \
34           ../libinstaller/ldlinux_bin.c
35OBJS     = $(patsubst %.c,%.o,$(notdir $(SRCS)))
36
37.SUFFIXES: .c .o .i .s .S
38
39VPATH = $(SRC):$(SRC)/../libinstaller:$(OBJ)/../libinstaller
40
41all: installer
42
43tidy dist:
44        -rm -f *.o *.i *.s *.a .*.d *.tmp
45
46clean: tidy
47        -rm -f extlinux
48
49spotless: clean
50        -rm -f *~
51
52installer: extlinux
53
54extlinux: $(OBJS)
55        $(CC) $(LDFLAGS) -o $@ $^
56
57strip:
58        $(STRIP) extlinux
59
60%.o: %.c
61        $(CC) $(UMAKEDEPS) $(CFLAGS) -c -o $@ $<
62%.i: %.c
63        $(CC) $(UMAKEDEPS) $(CFLAGS) -E -o $@ $<
64%.s: %.c
65        $(CC) $(UMAKEDEPS) $(CFLAGS) -S -o $@ $<
66
67-include .*.d
Note: See TracBrowser for help on using the repository browser.