diff options
author | H. Peter Anvin <hpa@zytor.com> | 2006-10-17 15:19:46 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2006-10-17 15:19:46 -0700 |
commit | 413b6d181f1abe16742437b56217d47567982a92 (patch) | |
tree | 27b4c94047f04c3697cdf6ee2770e52288d2be4f | |
parent | d28ef75b8986169840cf11791c3815b796e03f2a (diff) | |
download | syslinux.git-413b6d181f1abe16742437b56217d47567982a92.tar.gz syslinux.git-413b6d181f1abe16742437b56217d47567982a92.tar.xz syslinux.git-413b6d181f1abe16742437b56217d47567982a92.zip |
Remove -x c from assembly preprocessing
-rw-r--r-- | memdisk/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/memdisk/Makefile b/memdisk/Makefile index 800dcb54..f4d0739d 100644 --- a/memdisk/Makefile +++ b/memdisk/Makefile @@ -69,10 +69,10 @@ spotless: clean echo '.code16gcc' | cat - $< > $@ %.s: %.S - $(CC) -x c $(INCLUDE) $(CFLAGS) -D__ASSEMBLY__ -E -o $@ $< + $(CC) $(INCLUDE) $(CFLAGS) -D__ASSEMBLY__ -E -o $@ $< %.s16: %.S16 - $(CC) -x c $(INCLUDE) $(CFLAGS) -D__ASSEMBLY__ -E -o $@ $< + $(CC) $(INCLUDE) $(CFLAGS) -D__ASSEMBLY__ -E -o $@ $< %.s: %.c $(CC) $(INCLUDE) $(CFLAGS) -S -o $@ $< |