diff options
author | Mattias Andrée <maandree@kth.se> | 2020-05-27 20:04:46 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2020-05-27 20:04:46 +0200 |
commit | e9e86818c9383f064bc94ae7395df40b98854fb9 (patch) | |
tree | d43745b542f68a86340123c819ce08088923ecff | |
parent | First commit (diff) | |
download | sctrace-e9e86818c9383f064bc94ae7395df40b98854fb9.tar.gz sctrace-e9e86818c9383f064bc94ae7395df40b98854fb9.tar.bz2 sctrace-e9e86818c9383f064bc94ae7395df40b98854fb9.tar.xz |
Fix Makefile: rebuild if arg.h is updated
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ include $(CONFIGFILE) all: sctrace -sctrace: sctrace.c +sctrace: sctrace.c arg.h $(CC) -o $@ $@.c $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) install: sctrace |