From 413b6d181f1abe16742437b56217d47567982a92 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 17 Oct 2006 15:19:46 -0700 Subject: [PATCH] Remove -x c from assembly preprocessing --- memdisk/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/memdisk/Makefile b/memdisk/Makefile index 800dcb5..f4d0739 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 $@ $< -- 2.7.4