From da81f57f6d7ef2149b1d6db55178b4beaa70c5d7 Mon Sep 17 00:00:00 2001
From: Connor Lane Smith <cls@lubutu.com>
Date: Fri, 12 Nov 2010 00:30:03 +0000
Subject: [PATCH] fixed config.mk dep

---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 6775a10..8abfd0c 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 
 include config.mk
 
-all: options dmenu dmenu_path config.mk
+all: options dmenu dmenu_path
 
 options:
 	@echo dmenu build options:
@@ -14,7 +14,7 @@ options:
 dmenu: dmenu.o draw.o
 dmenu_path: dmenu_path.o
 
-.c.o:
+.c.o: config.mk
 	@echo CC -c $<
 	@${CC} -c $< ${CFLAGS}