Fixed dependency on Makefile & config.h

This commit is contained in:
Bert 2011-07-17 22:16:46 +02:00
parent 272ebff865
commit 0a171a9c8b
1 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,9 @@ OBJ = $(SRC:.c=.o)
sxiv: $(OBJ)
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)
.c.o: Makefile config.h
$(OBJ): Makefile config.h
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
install: all