Previous 199869 Revisions Next

r31659 Friday 15th August, 2014 at 03:26:32 UTC by R. Belmont
Allow use of external SQLite3 [Cesare Falco]
[/trunk]makefile

trunk/makefile
r31658r31659
228228# uncomment next line to build jpeglib as part of MAME build
229229BUILD_JPEGLIB = 1
230230
231# uncomment next line to build libsqlite3 as part of MAME/MESS build
232BUILD_SQLITE3 = 1
233
231234# uncomment next line to build PortMidi as part of MAME/MESS build
232235BUILD_MIDILIB = 1
233236
r31658r31659
254257# DEPRECATED = 1
255258
256259# specify the sanitizer to use or leave empty to use none
257# SANITIZE =
260# SANITIZE =
258261
259262# uncomment next line to enable LTO (link-time optimizations)
260263# LTO = 1
r31658r31659
760763WEB_LIB = $(OBJ)/libweb.a
761764
762765# add SQLite3 library
766ifeq ($(BUILD_SQLITE3),1)
763767SQLITE3_LIB = $(OBJ)/libsqlite3.a
768else
769LIBS += -lsqlite3
770SQLITE3_LIB =
771endif
764772
765773# add PortMidi MIDI library
766774ifeq ($(BUILD_MIDILIB),1)

Previous 199869 Revisions Next


© 1997-2024 The MAME Team