1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-14 22:03:27 +01:00

add fallback for wndres

This commit is contained in:
FunkyFr3sh 2024-09-23 13:27:49 +02:00
parent 64f8f01f9a
commit 4d0b1734dc

View File

@ -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)