Browse Source

fix make target src/str.o: added missing src/str.h dep

Fabian Peter Hammerle 5 years ago
parent
commit
1e8d7522de
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -21,7 +21,7 @@ src/gpgme.o : src/gpgme.c src/gpgme.h
 src/main.o : src/main.c src/fs.h src/gpgme.h src/str.h
 	$(CC) $(CFLAGS) -c $< -o $@
 
-src/str.o : src/str.c
+src/str.o : src/str.c src/str.h
 	$(CC) $(CFLAGS) -c $< -o $@
 
 rgpgfs : src/fs.o src/gpgme.o src/main.o src/str.o