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 /win32 | |
parent | 34763a8075ac5f9a7f5ea3d3e420d1efc67c4441 (diff) | |
download | syslinux-6c9b3fcb03f5597954e00ef3303c769baf1336a6.tar.gz |
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 'win32')
-rw-r--r-- | win32/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/win32/Makefile b/win32/Makefile index 99766151..fe94d1e4 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -47,12 +47,15 @@ WINCC_IS_GOOD := $(shell $(WINCC) $(WINCFLAGS) $(WINLDFLAGS) -o hello.exe hello. .SUFFIXES: .c .o .i .s .S -SRCS = syslinux.c ../libinstaller/syslxmod.c \ - ../core/bootsect_bin.c ../core/ldlinux_bin.c \ - ../mbr/mbr_bin.c $(wildcard ../libfat/*.c) +SRCS = syslinux.c \ + ../libinstaller/syslxmod.c \ + ../libinstaller/bootsect_bin.c \ + ../libinstaller/ldlinux_bin.c \ + ../libinstaller/mbr_bin.c \ + $(wildcard ../libfat/*.c) OBJS = $(patsubst %.c,%.o,$(notdir $(SRCS))) -VPATH = .:../libfat:../libinstaller:../core:../mbr +VPATH = .:../libfat:../libinstaller TARGETS = syslinux.exe |