From 94478bb9506f1cdb3404a397a3b670f44739e14e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Fri, 12 Oct 2012 06:55:17 +0000 Subject: [PATCH] fixed pattern rules --- BaS_GNU/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BaS_GNU/Makefile b/BaS_GNU/Makefile index 71c4e21..5593a74 100644 --- a/BaS_GNU/Makefile +++ b/BaS_GNU/Makefile @@ -49,8 +49,8 @@ $(EXEC): $(OBJS) clean: rm $(EXEC) *.o -.c.o: +$(OBJDIR)/%.o:$(SRCDIR)/%.c $(CC) -c $(CFLAGS) $(INCLUDE) $< -o $@ -.S.o: +$(OBJDIR)/%.o:$(SRCDIR)/%.S $(CC) -c $(CFLAGS) $(INCLUDE) $< -o $@