Skip to content

Commit

Permalink
add fallback for wndres
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Sep 23, 2024
1 parent 64f8f01 commit 4d0b173
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 @@ -34,7 +34,7 @@ OBJS := $(addsuffix .o, $(basename $(SRCS)))
all: $(TARGET)

%.o: %.rc
$(WINDRES) -J rc $< $@
$(WINDRES) -J rc $< $@ || windres -J rc $< $@

$(TARGET): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $^ exports.def $(LIBS)
Expand Down

0 comments on commit 4d0b173

Please sign in to comment.