From 8af57c8e8f63da96a11f79e0169ad397d35cfa3e Mon Sep 17 00:00:00 2001 From: Kelvin Lawson Date: Wed, 27 Feb 2013 01:21:39 +0000 Subject: [PATCH] ARM/IntegratorCP: Match avr/other platforms. --- platforms/qemu_integratorcp/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/qemu_integratorcp/Makefile b/platforms/qemu_integratorcp/Makefile index a9153f5..63e07c4 100644 --- a/platforms/qemu_integratorcp/Makefile +++ b/platforms/qemu_integratorcp/Makefile @@ -31,14 +31,14 @@ SRCS := $(SRCS) \ $(ATOMTHREADS)/tests/$(TEST_NAME).c ASMS := $(ASMS) \ - startup.S \ + startup.s \ INCLUDES := $(INCLUDES) \ -I$(ATOMTHREADS) include $(ATOMTHREADS)/ports/arm/Makefile -OBJS = $(SRCS:.c=.o) $(ASMS:.S=.o) +OBJS = $(SRCS:.c=.o) $(ASMS:.s=.o) include ../rules.mk