diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-27 19:15:00 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-27 19:15:00 -0700 |
commit | 6c9b3fcb03f5597954e00ef3303c769baf1336a6 (patch) | |
tree | 688c44db2524d32783321e6b8dd4908282319a38 /mtools | |
parent | 34763a8075ac5f9a7f5ea3d3e420d1efc67c4441 (diff) | |
download | syslinux-elf-6c9b3fcb03f5597954e00ef3303c769baf1336a6.tar.gz syslinux-elf-6c9b3fcb03f5597954e00ef3303c769baf1336a6.tar.xz syslinux-elf-6c9b3fcb03f5597954e00ef3303c769baf1336a6.zip |
Build _bin.c files in libinstaller; clean up B/I separation
Clean up the BSUBDIR/ISUBDIR separation further. Build _bin.c files,
which are an intermediate stage toward building the installers, in the
libinstaller directory, since that directory is used by all the
installers anyway. That also lets us get bin2c.pl out of the root.
Diffstat (limited to 'mtools')
-rw-r--r-- | mtools/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/mtools/Makefile b/mtools/Makefile index d3cdf81e..9e9e5114 100644 --- a/mtools/Makefile +++ b/mtools/Makefile @@ -12,14 +12,16 @@ INCLUDES = -I. -I.. -I../libfat -I../libinstaller CFLAGS = -W -Wall -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) LDFLAGS = $(LDHASH) -s -SRCS = syslinux.c ../libinstaller/syslxmod.c \ - ../core/bootsect_bin.c ../core/ldlinux_bin.c \ +SRCS = syslinux.c \ + ../libinstaller/syslxmod.c \ + ../libinstaller/bootsect_bin.c \ + ../libinstaller/ldlinux_bin.c \ $(wildcard ../libfat/*.c) OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS))) .SUFFIXES: .c .o .i .s .S -VPATH = .:../libfat:../libinstaller:../core +VPATH = .:../libfat:../libinstaller all: installer |