summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/tools/floptool/floptool.mak
blob: 37fa0a82e04d3c9563dd41b5afb485e6374fd2d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
###########################################################################
#
#   floptool.mak
#
#   MESS floptool makefile
#
###########################################################################


# floptool executable name
FLOPTOOL = 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
#-------------------------------------------------

$(FLOPTOOL): $(FLOPTOOL_OBJS) $(FORMATS_LIB) $(LIBEMU) $(LIBUTIL) $(EXPAT) $(ZLIB) $(LIBOCORE)
	@echo Linking $@...
	$(LD) $(LDFLAGS) $^ $(LIBS) -o $@