diff options
author | hpa <hpa> | 2004-12-30 21:34:18 +0000 |
---|---|---|
committer | hpa <hpa> | 2004-12-30 21:34:18 +0000 |
commit | cf913a8b454d6d393a0148b83c1a5a41f9b18b48 (patch) | |
tree | 0cb5c13144bd46bd131c9274fb1ce16968f17100 /dos | |
parent | dd7cbb4b5b3c585ea23ef9c51d299b6e9f87a06f (diff) | |
download | syslinux-cf913a8b454d6d393a0148b83c1a5a41f9b18b48.tar.gz |
Make the various Makefiles agree what is BTARGET and what is ITARGET
Diffstat (limited to 'dos')
-rw-r--r-- | dos/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dos/Makefile b/dos/Makefile index f17e4035..7da22fe6 100644 --- a/dos/Makefile +++ b/dos/Makefile @@ -20,18 +20,19 @@ LIBOBJS = conio.o memcpy.o memset.o skipatou.o atou.o malloc.o free.o \ VPATH = .:..:../libfat -all: installer +TARGETS = syslinux.com + +all: $(TARGETS) tidy: -rm -f *.o *.i *.s *.a .*.d *.elf clean: tidy - -rm -f syslinux.com spotless: clean - -rm -f *~ + -rm -f *~ $(TARGETS) -installer: syslinux.com +installer: syslinux.elf: $(OBJS) libcom.a $(LD) $(LDFLAGS) -o $@ $^ |