aboutsummaryrefslogtreecommitdiffstats
path: root/demos/Win32-MinGW/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'demos/Win32-MinGW/Makefile')
-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)