segatools/amex/meson.build
Tau 6d933eb8f4 amex/config.c: Rename from cfg.c
Easier to type and more consistent with its identifiers.
2019-05-17 23:07:20 -04:00

29 lines
550 B
Meson

amex_lib = static_library(
'amex',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
'amex.c',
'amex.h',
'config.c',
'config.h',
'ds.c',
'ds.h',
'eeprom.c',
'eeprom.h',
'gpio.c',
'gpio.h',
'guid.c',
'jvs.c',
'jvs.h',
'nvram.c',
'nvram.h',
'sram.c',
'sram.h',
],
)