diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-28 18:58:00 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-28 18:58:00 -0700 |
commit | 4ba801edb01acae7281fe09f6225c38390033817 (patch) | |
tree | 6bee72af361b984332a6414297f2c10f4d6016ad /dos | |
parent | ff747ef4c75c9e55c9d5c5552126d994c96da245 (diff) | |
download | syslinux.git-4ba801edb01acae7281fe09f6225c38390033817.tar.gz syslinux.git-4ba801edb01acae7281fe09f6225c38390033817.tar.xz syslinux.git-4ba801edb01acae7281fe09f6225c38390033817.zip |
Assemble via ELF, to enable future linking
Assemble all files to ELF instead of using the NASM built-in linker.
This can enable us to do actual linking in the future.
Diffstat (limited to 'dos')
-rw-r--r-- | dos/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dos/Makefile b/dos/Makefile index 964c7fdc..04550dab 100644 --- a/dos/Makefile +++ b/dos/Makefile @@ -21,7 +21,8 @@ RANLIB = ranlib LIBGCC := $(shell $(CC) --print-libgcc) SRCS = syslinux.c \ - ../syslxmod.c ../bootsect_bin.c ../ldlinux_bin.c ../mbr_bin.c \ + ../libinstaller/syslxmod.c \ + ../bootsect_bin.c ../ldlinux_bin.c ../mbr_bin.c \ $(wildcard ../libfat/*.c) OBJS = crt0.o $(patsubst %.c,%.o,$(notdir $(SRCS))) LIBOBJS = conio.o memcpy.o memset.o skipatou.o atou.o malloc.o free.o \ |