~ubuntu-branches/ubuntu/lucid/sdlmame/lucid

« back to all changes in this revision

Viewing changes to src/tools/tools.mak

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Falco
  • Date: 2009-11-03 17:10:15 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20091103171015-6hop4ory5lxnumpn
Tags: 0.135-0ubuntu1
* New upstream release - Closes (LP: #403212)
* debian/watch: unstable releases are no longer detected
* mame.ini: added the cheat subdirectories to cheatpath so zipped
  cheatfiles will be searched too
* renamed crsshair subdirectory to crosshair to reflect upstream change
* mame.ini: renamed references to crosshair subdirectory (see above)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#
5
5
#   MAME tools makefile
6
6
#
7
 
#   Copyright Nicola Salmoria and the MAME Team.
8
 
#   Visit http://mamedev.org for licensing and usage restrictions.
 
7
###########################################################################
 
8
#
 
9
#   Copyright Aaron Giles
 
10
#   All rights reserved.
 
11
#
 
12
#   Redistribution and use in source and binary forms, with or without
 
13
#   modification, are permitted provided that the following conditions are
 
14
#   met:
 
15
#
 
16
#       * Redistributions of source code must retain the above copyright
 
17
#         notice, this list of conditions and the following disclaimer.
 
18
#       * Redistributions in binary form must reproduce the above copyright
 
19
#         notice, this list of conditions and the following disclaimer in
 
20
#         the documentation and/or other materials provided with the
 
21
#         distribution.
 
22
#       * Neither the name 'MAME' nor the names of its contributors may be
 
23
#         used to endorse or promote products derived from this software
 
24
#         without specific prior written permission.
 
25
#
 
26
#   THIS SOFTWARE IS PROVIDED BY AARON GILES ''AS IS'' AND ANY EXPRESS OR
 
27
#   IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
28
#   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
29
#   DISCLAIMED. IN NO EVENT SHALL AARON GILES BE LIABLE FOR ANY DIRECT,
 
30
#   INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
31
#   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 
32
#   SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
33
#   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 
34
#   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 
35
#   IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
36
#   POSSIBILITY OF SUCH DAMAGE.
9
37
#
10
38
###########################################################################
11
39
 
26
54
        romcmp$(EXE) \
27
55
        chdman$(EXE) \
28
56
        jedutil$(EXE) \
 
57
        unidasm$(EXE) \
29
58
        ldresample$(EXE) \
30
59
        ldverify$(EXE) \
31
60
        regrep$(EXE) \
32
61
        srcclean$(EXE) \
33
62
        src2html$(EXE) \
 
63
        split$(EXE) \
34
64
 
35
65
 
36
66
 
75
105
 
76
106
 
77
107
#-------------------------------------------------
 
108
# unidasm
 
109
#-------------------------------------------------
 
110
 
 
111
UNIDASMOBJS = \
 
112
        $(TOOLSOBJ)/unidasm.o \
 
113
 
 
114
unidasm$(EXE): $(UNIDASMOBJS) $(LIBUTIL) $(LIBOCORE) $(LIBDASM) $(ZLIB) $(EXPAT)
 
115
        @echo Linking $@...
 
116
        $(LD) $(LDFLAGS) $^ $(LIBS) -o $@
 
117
 
 
118
 
 
119
 
 
120
#-------------------------------------------------
78
121
# ldresample
79
122
#-------------------------------------------------
80
123
 
136
179
src2html$(EXE): $(SRC2HTMLOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
137
180
        @echo Linking $@...
138
181
        $(LD) $(LDFLAGS) $^ $(LIBS) -o $@
 
182
 
 
183
 
 
184
 
 
185
#-------------------------------------------------
 
186
# split
 
187
#-------------------------------------------------
 
188
 
 
189
SPLITOBJS = \
 
190
        $(TOOLSOBJ)/split.o \
 
191
 
 
192
split$(EXE): $(SPLITOBJS) $(LIBUTIL) $(LIBOCORE) $(ZLIB) $(EXPAT)
 
193
        @echo Linking $@...
 
194
        $(LD) $(LDFLAGS) $^ $(LIBS) -o $@