mirror of
https://github.com/holub/mame
synced 2025-05-28 16:43:04 +03:00
added some library dependencies for Visual Studio (nw)
This commit is contained in:
parent
7aabd6f8cd
commit
c8b93e57d2
@ -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 $@
|
||||
|
@ -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 $@
|
||||
|
@ -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 $@
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user