repair msdos cross-compile

This commit is contained in:
nhmall
2024-10-05 16:48:52 -04:00
parent fb70aadbb5
commit 575030548a
2 changed files with 6 additions and 4 deletions

View File

@@ -277,8 +277,9 @@ lintdgn:
# dependencies for recover
#
$(TARGETPFX)recover: $(RECOVOBJS)
$(TARGET_CLINK) $(TARGET_LFLAGS) -o recover $(RECOVOBJS) $(HACKLIB) $(LIBS)
$(TARGETPFX)recover: $(RECOVOBJS) $(TARGETPFX)$(HACKLIB)
$(TARGET_CLINK) $(TARGET_LFLAGS) -o recover \
$(RECOVOBJS) $(TARGETPFX)$(HACKLIB) $(LIBS)
$(TARGETPFX)recover.o: recover.c $(CONFIG_H)
$(TARGET_CC) $(TARGET_CFLAGS) $(CSTD) -c recover.c -o $@