diff options
author | Daniel Carl <danielcarl@gmx.de> | 2013-06-22 18:51:24 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2013-06-22 18:51:24 +0200 |
commit | f2527dbd40c69c9a406a8ea2ed4917621a67f81d (patch) | |
tree | 4708b3b4b4b55ed9214bb7903a9c35a18effb10a /Makefile | |
parent | 78bfdc4fdee1e84393f268da6ae4d1c24ef291ed (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |