diff options
Diffstat (limited to 'src/mess/tools/floptool/floptool.mak')
-rw-r--r-- | src/mess/tools/floptool/floptool.mak | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/mess/tools/floptool/floptool.mak b/src/mess/tools/floptool/floptool.mak deleted file mode 100644 index 19fa39bdc82..00000000000 --- a/src/mess/tools/floptool/floptool.mak +++ /dev/null @@ -1,39 +0,0 @@ -########################################################################### -# -# floptool.mak -# -# MESS floptool makefile -# -########################################################################### - - -# floptool executable name -FLOPTOOL = $(BIN)floptool$(EXE) - -# add path to floptool headers -INCPATH += -I$(SRC)/$(TARGET)/tools/floptool - -# floptool directories -FLOPTOOLOBJ = $(MESS_TOOLS)/floptool - - -#------------------------------------------------- -# floptool objects -#------------------------------------------------- - -OBJDIRS += \ - $(FLOPTOOLOBJ) - -FLOPTOOL_OBJS = \ - $(FLOPTOOLOBJ)/main.o \ - - - -#------------------------------------------------- -# rules to build the floptool executable -#------------------------------------------------- - -# 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) $^ $(BASELIBS) -o $@ |