Skip to content

Commit

Permalink
build: fix incorrect argument order
Browse files Browse the repository at this point in the history
  • Loading branch information
zeim839 committed Nov 27, 2024
1 parent 0e4497d commit bfb955d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ TARGET = nes-tools
all: $(TARGET)

$(TARGET): $(AUDIO_OBJ_FILES) $(OBJ_FILES)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
$(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)

$(AUDIO_OBJ_FILES): $(AUDIO_SRC_FILES) $(AUDIO_HDR_FILES)
$(MAKE) -C $(AUDIO_DIR) all
Expand Down

0 comments on commit bfb955d

Please sign in to comment.