Skip to content

Commit

Permalink
fix(makefile): Add missing dependencies from src/common/* (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperupcall committed Dec 15, 2023
1 parent 29b8116 commit 2e8f12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ all: $(BINS)

build: $(BINS)

$(BINS): $(SRC) $(MAKEFILES) $(OBJS)
$(BINS): $(SRC) $(COMMON_SRC) $(MAKEFILES) $(OBJS)
$(CC) $(CFLAGS) -o $@ $(COMMON_SRC) src/$(@:.exe=).c $(OBJS) $(LDFLAGS)

$(MAKEFILES):
Expand Down

0 comments on commit 2e8f12f

Please sign in to comment.