aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MinGW
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-26 10:40:00 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-26 10:40:00 +0000
commita82dec52e68b99553e1793f46e49e297f03df635 (patch)
tree184b44c0a6b2b39d4a0bdfacafac39193613478b /demos/Win32-MinGW
parent88b8b3eea1cf7c073e8312ca592ea1e5813e0338 (diff)
downloadChibiOS-a82dec52e68b99553e1793f46e49e297f03df635.tar.gz
ChibiOS-a82dec52e68b99553e1793f46e49e297f03df635.tar.bz2
ChibiOS-a82dec52e68b99553e1793f46e49e297f03df635.zip
Fixed bug 3601621.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5091 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'demos/Win32-MinGW')
-rw-r--r--demos/Win32-MinGW/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/Win32-MinGW/Makefile b/demos/Win32-MinGW/Makefile
index 73e938d44..1b77c241c 100644
--- a/demos/Win32-MinGW/Makefile
+++ b/demos/Win32-MinGW/Makefile
@@ -117,10 +117,10 @@ 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)