Browse Source

Fixed dependency on Makefile & config.h

master
Bert 14 years ago
parent
commit
0a171a9c8b
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      Makefile

+ 3
- 1
Makefile View File

@@ -15,7 +15,9 @@ OBJ = $(SRC:.c=.o)
sxiv: $(OBJ) sxiv: $(OBJ)
$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) $(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBS)


.c.o: Makefile config.h
$(OBJ): Makefile config.h

.c.o:
$(CC) $(CFLAGS) -c -o $@ $< $(CC) $(CFLAGS) -c -o $@ $<


install: all install: all


Loading…
Cancel
Save