From 5338fc0b31019fbb0654ace558b3121b53ca35e2 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 20 Apr 2018 19:17:02 +0200 Subject: Rename .s files to .S --- Makefile | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a8a9d91..b35f3cd 100644 --- a/Makefile +++ b/Makefile @@ -172,7 +172,6 @@ endif include Makefile.common OBJS := $(SOURCES:.c=.o) -OBJS := $(OBJS:.cpp=.o) OBJS := $(OBJS:.S=.o) OBJS := $(OBJS:.s=.o) @@ -198,12 +197,6 @@ endif %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< -%.o: %.cpp - $(CXX) $(CFLAGS) -c -o $@ $< - -%.o: %.s - $(CXX) $(CFLAGS) -Wa,-I./src/ -c -o $@ $< - %.o: %.S $(CXX) $(CFLAGS) -Wa,-I./src/ -c -o $@ $< -- cgit v1.2.3