Skip to content

Commit 40ecd2d

Browse files
committed
Specify the header as a Makefile dependency
1 parent e4c751d commit 40ecd2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ endif
3232
all: $(TARGET_PLAY) $(TARGET_CONV)
3333

3434
play: $(TARGET_PLAY)
35-
$(TARGET_PLAY):$(TARGET_PLAY).c
35+
$(TARGET_PLAY):$(TARGET_PLAY).c qoa.h
3636
$(CC) $(CFLAGS_PLAY) $(TARGET_PLAY).c -o $(TARGET_PLAY) $(LFLAGS_PLAY)
3737

3838
conv: $(TARGET_CONV)
39-
$(TARGET_CONV):$(TARGET_CONV).c
39+
$(TARGET_CONV):$(TARGET_CONV).c qoa.h
4040
$(CC) $(CFLAGS_CONV) $(TARGET_CONV).c -o $(TARGET_CONV) $(LFLAGS_CONV)
4141

4242
.PHONY: clean

0 commit comments

Comments
 (0)