summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2006-10-17 15:19:46 -0700
committerH. Peter Anvin <hpa@zytor.com>2006-10-17 15:19:46 -0700
commit413b6d181f1abe16742437b56217d47567982a92 (patch)
tree27b4c94047f04c3697cdf6ee2770e52288d2be4f
parentd28ef75b8986169840cf11791c3815b796e03f2a (diff)
downloadsyslinux-413b6d181f1abe16742437b56217d47567982a92.tar.gz
Remove -x c from assembly preprocessing
-rw-r--r--memdisk/Makefile4
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 $@ $<