summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2013-06-22 18:51:24 +0200
committerDaniel Carl <danielcarl@gmx.de>2013-06-22 18:51:24 +0200
commitf2527dbd40c69c9a406a8ea2ed4917621a67f81d (patch)
tree4708b3b4b4b55ed9214bb7903a9c35a18effb10a /Makefile
parent78bfdc4fdee1e84393f268da6ae4d1c24ef291ed (diff)
Fixed none opening image hints without surrounding link.
Image hints could not be opened if they where not within a link, because clicking an image has no effect here. Now the image src is processed within the c-layer to open it.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 67c4ad6..77aa5e9 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ $(TARGET): $(OBJ)
@echo "$(CC) $@"
@$(CC) $(OBJ) -o $(TARGET) $(LDFLAGS)
-%.o: %.c $(HEAD)
+%.o: %.c %.h src/config.h
@echo "${CC} $<"
@$(CC) -c -o $@ $< $(CPPFLAGS) $(CFLAGS)