diff options
-rw-r--r-- | Makefile | 8 | ||||
-rw-r--r-- | acc.asm (renamed from acc.S) | 0 | ||||
-rw-r--r-- | datetime.asm (renamed from datetime.S) | 0 | ||||
-rw-r--r-- | fxn.asm (renamed from fxn.S) | 0 | ||||
-rw-r--r-- | header.asm (renamed from header.S) | 0 | ||||
-rw-r--r-- | int2f.asm (renamed from int2f.S) | 0 | ||||
-rw-r--r-- | message.asm (renamed from message.S) | 0 | ||||
-rw-r--r-- | pathname.asm (renamed from pathname.S) | 0 | ||||
-rw-r--r-- | printmsg.asm (renamed from printmsg.S) | 0 | ||||
-rw-r--r-- | protomsg.asm (renamed from protomsg.S) | 0 | ||||
-rw-r--r-- | start.asm (renamed from start.S) | 0 | ||||
-rw-r--r-- | utf.asm (renamed from utf.S) | 0 |
12 files changed, 4 insertions, 4 deletions
@@ -38,15 +38,15 @@ OBJS = header.o start.o printmsg.o \ utf.o datetime.o \ message.o -.SUFFIXES: .s .S .o .elf .lst .map .exe .img +.SUFFIXES: .s .asm .o .elf .lst .map .exe .img all: v9fs.exe v9fs.img .PRECIOUS: %.s -%.s: %.S v9fs.h - $(CC) $(CFLAGS) -D__ASSEMBLY__ -E -o $@ $< +%.s: %.asm v9fs.h + $(CC) $(CFLAGS) -x assembler-with-cpp -D__ASSEMBLY__ -E -o $@ $< -%.o: %.S +%.o: %.asm .PRECIOUS: %.o %.o: %.s diff --git a/datetime.S b/datetime.asm index 162eaf2..162eaf2 100644 --- a/datetime.S +++ b/datetime.asm diff --git a/pathname.S b/pathname.asm index dd666c2..dd666c2 100644 --- a/pathname.S +++ b/pathname.asm diff --git a/printmsg.S b/printmsg.asm index 4293877..4293877 100644 --- a/printmsg.S +++ b/printmsg.asm diff --git a/protomsg.S b/protomsg.asm index d615710..d615710 100644 --- a/protomsg.S +++ b/protomsg.asm |