summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 0 insertions, 7 deletions
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 $@ $<