about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 24bcd7d..abcf9e8 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ all: $(BIN)
 $(BIN): $(OBJS)
 	$(CC) $(OBJS) ${LDFLAGS} -o ${BIN} $(LIBS)
 
-$(OBJS): %.o: %.c
+$(OBJS): $(OBJS:.o=.c)
 	$(CC) -c $(CFLAGS) $(CPPFLAGS) $<
 
 install:
@@ -34,5 +34,3 @@ clean:
 	-rm -rf $(BIN) *.o *.core
 
 .PHONY: install clean
-
--include $(DEPS)