aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/testbuild/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/rt/testbuild/Makefile')
-rw-r--r--test/rt/testbuild/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/rt/testbuild/Makefile b/test/rt/testbuild/Makefile
index c67c5fdb4..7d10e9667 100644
--- a/test/rt/testbuild/Makefile
+++ b/test/rt/testbuild/Makefile
@@ -110,18 +110,18 @@ CPFLAGS += -MD -MP -MF .dep/$(@F).d
all: $(OBJS) $(PROJECT).exe
-%o : %c
+%.o : %.c
$(CC) -c $(CPFLAGS) -I . $(INCDIR) $< -o $@
-%o : %s
+%.o : %.s
$(AS) -c $(ASFLAGS) $< -o $@
-%exe: $(OBJS)
+%.exe: $(OBJS)
$(CC) $(OBJS) $(LDFLAGS) $(LIBS) -o $@
.PHONY: gcov
gcov:
- $(COV) -u -o $(CHIBIOS)/os/rt/src $(KERNSRC)
+ $(COV) -u -f -b -o $(CHIBIOS)/os/rt/src $(KERNSRC)
clean:
-rm -f $(OBJS)