aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt/testbuild/Makefile
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2015-04-08 16:27:36 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2015-04-08 16:27:36 +0000
commit071db6ae066d17f7d9952d19d6fe49477fb8344d (patch)
treea859b967bfb3d966b8680f49eb90533520952e69 /test/rt/testbuild/Makefile
parent38fd2e444ca516c8c136ed4a40e5cd76e57689b8 (diff)
downloadChibiOS-071db6ae066d17f7d9952d19d6fe49477fb8344d.tar.gz
ChibiOS-071db6ae066d17f7d9952d19d6fe49477fb8344d.tar.bz2
ChibiOS-071db6ae066d17f7d9952d19d6fe49477fb8344d.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7875 35acf78f-673a-0410-8e92-d51de3d6d3f4
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)