blob: 66d91b71d89d1145a7e23152d1e8d31c2cb81253 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
###########################################################################
#
# lib.mak
#
# MAME dependent library makefile
#
# Copyright Nicola Salmoria and the MAME Team.
# Visit http://mamedev.org for licensing and usage restrictions.
#
###########################################################################
LIBOBJ = $(OBJ)/lib
OBJDIRS += \
$(LIBOBJ)/util \
$(LIBOBJ)/expat \
$(LIBOBJ)/zlib \
#-------------------------------------------------
# utility library objects
#-------------------------------------------------
UTILOBJS = \
$(LIBOBJ)/util/astring.o \
$(LIBOBJ)/util/avcomp.o \
$(LIBOBJ)/util/aviio.o \
$(LIBOBJ)/util/bitmap.o \
$(LIBOBJ)/util/cdrom.o \
$(LIBOBJ)/util/chd.o \
$(LIBOBJ)/util/corefile.o \
$(LIBOBJ)/util/corestr.o \
$(LIBOBJ)/util/coreutil.o \
$(LIBOBJ)/util/harddisk.o \
$(LIBOBJ)/util/huffman.o \
$(LIBOBJ)/util/jedparse.o \
$(LIBOBJ)/util/md5.o \
$(LIBOBJ)/util/options.o \
$(LIBOBJ)/util/palette.o \
$(LIBOBJ)/util/png.o \
$(LIBOBJ)/util/pool.o \
$(LIBOBJ)/util/sha1.o \
$(LIBOBJ)/util/unicode.o \
$(LIBOBJ)/util/unzip.o \
$(LIBOBJ)/util/vbiparse.o \
$(LIBOBJ)/util/xmlfile.o \
$(OBJ)/libutil.a: $(UTILOBJS)
#-------------------------------------------------
# expat library objects
#-------------------------------------------------
EXPATOBJS = \
$(LIBOBJ)/expat/xmlparse.o \
$(LIBOBJ)/expat/xmlrole.o \
$(LIBOBJ)/expat/xmltok.o
$(OBJ)/libexpat.a: $(EXPATOBJS)
#-------------------------------------------------
# zlib library objects
#-------------------------------------------------
ZLIBOBJS = \
$(LIBOBJ)/zlib/adler32.o \
$(LIBOBJ)/zlib/compress.o \
$(LIBOBJ)/zlib/crc32.o \
$(LIBOBJ)/zlib/deflate.o \
$(LIBOBJ)/zlib/gzio.o \
$(LIBOBJ)/zlib/inffast.o \
$(LIBOBJ)/zlib/inflate.o \
$(LIBOBJ)/zlib/infback.o \
$(LIBOBJ)/zlib/inftrees.o \
$(LIBOBJ)/zlib/trees.o \
$(LIBOBJ)/zlib/uncompr.o \
$(LIBOBJ)/zlib/zutil.o
$(OBJ)/libz.a: $(ZLIBOBJS)
|