diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-08-20 15:15:34 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-08-20 15:15:34 -0700 |
commit | bd09a6d828fa492aed4406adde6c412e0e5c640d (patch) | |
tree | 660a4813999ba273afb26fd3e137399cb0a57a97 /win32 | |
parent | 6aa3a1c8380276387430684eb39650e958b0030a (diff) | |
download | syslinux-bd09a6d828fa492aed4406adde6c412e0e5c640d.tar.gz syslinux-bd09a6d828fa492aed4406adde6c412e0e5c640d.tar.xz syslinux-bd09a6d828fa492aed4406adde6c412e0e5c640d.zip |
Major Makefile cleanups; gcc 4.3.0 compatiblity
Cleanup and centralize the Makefile system even more.
Fix a gcc 4.3 incompatibility in memdisk (definition of strlen).
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile index 7ec55f20..bb7cb34e 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -64,7 +64,7 @@ all: endif tidy dist: - -rm -f *.o *.i *.s *.a .*.d *_bin.c hello.exe + -rm -f *.o *.i *.s *.a .*.d *.tmp *_bin.c hello.exe clean: tidy @@ -84,4 +84,4 @@ syslinux.exe: $(OBJS) %.s: %.c $(WINCC) $(WINCFLAGS) -S -o $@ $< --include .*.d +-include .*.d *.tmp |