added some library dependencies for Visual Studio (nw)

This commit is contained in:
Oliver Stöneberg 2014-03-31 08:52:09 +00:00
parent 7aabd6f8cd
commit c8b93e57d2
3 changed files with 8 additions and 4 deletions

View File

@ -33,6 +33,7 @@ CASTOOL_OBJS = \
# rules to build the castool executable
#-------------------------------------------------
$(CASTOOL): $(CASTOOL_OBJS) $(FORMATS_LIB) $(LIBUTIL) $(EXPAT) $(ZLIB) $(LIBOCORE)
# TODO: Visual Studio wants $(FLAC_LIB) and $(7Z_LIB) during linking...
$(CASTOOL): $(CASTOOL_OBJS) $(FORMATS_LIB) $(LIBUTIL) $(EXPAT) $(ZLIB) $(LIBOCORE) $(FLAC_LIB) $(7Z_LIB)
@echo Linking $@...
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@

View File

@ -33,6 +33,7 @@ FLOPTOOL_OBJS = \
# rules to build the floptool executable
#-------------------------------------------------
$(FLOPTOOL): $(FLOPTOOL_OBJS) $(FORMATS_LIB) $(LIBEMU) $(LIBUTIL) $(EXPAT) $(ZLIB) $(LIBOCORE)
# TODO: Visual Studio wants $(FLAC_LIB) and $(7Z_LIB) during linking...
$(FLOPTOOL): $(FLOPTOOL_OBJS) $(FORMATS_LIB) $(LIBEMU) $(LIBUTIL) $(EXPAT) $(ZLIB) $(LIBOCORE) $(FLAC_LIB) $(7Z_LIB)
@echo Linking $@...
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@

View File

@ -113,7 +113,8 @@ jedutil$(EXE): $(JEDUTILOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
UNIDASMOBJS = \
$(TOOLSOBJ)/unidasm.o \
unidasm$(EXE): $(UNIDASMOBJS) $(LIBDASM) $(LIBEMU) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
# TODO: Visual Studio wants $(FLAC_LIB) and $(7Z_LIB) during linking...
unidasm$(EXE): $(UNIDASMOBJS) $(LIBDASM) $(LIBEMU) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT) $(FLAC_LIB) $(7Z_LIB)
@echo Linking $@...
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@
@ -191,7 +192,8 @@ src2html$(EXE): $(SRC2HTMLOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
SPLITOBJS = \
$(TOOLSOBJ)/split.o \
split$(EXE): $(SPLITOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
# TODO: Visual Studio wants $(FLAC_LIB) and $(7Z_LIB) during linking...
split$(EXE): $(SPLITOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT) $(FLAC_LIB) $(7Z_LIB)
@echo Linking $@...
$(LD) $(LDFLAGS) $^ $(LIBS) -o $@