2019-03-04 22:22:38 +00:00
|
|
|
amex_lib = static_library(
|
|
|
|
'amex',
|
2018-11-07 21:40:39 +00:00
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
2019-05-02 01:17:30 +00:00
|
|
|
c_pch : '../precompiled.h',
|
2018-11-07 21:40:39 +00:00
|
|
|
dependencies : [
|
|
|
|
capnhook.get_variable('hook_dep'),
|
|
|
|
],
|
|
|
|
sources : [
|
2019-05-04 16:04:38 +00:00
|
|
|
'amex.c',
|
|
|
|
'amex.h',
|
2019-05-16 00:08:35 +00:00
|
|
|
'config.c',
|
|
|
|
'config.h',
|
2018-11-08 01:04:54 +00:00
|
|
|
'ds.c',
|
|
|
|
'ds.h',
|
2018-11-07 21:45:48 +00:00
|
|
|
'eeprom.c',
|
|
|
|
'eeprom.h',
|
2018-11-08 15:15:34 +00:00
|
|
|
'gpio.c',
|
|
|
|
'gpio.h',
|
2018-11-07 21:40:39 +00:00
|
|
|
'guid.c',
|
2018-11-08 19:20:48 +00:00
|
|
|
'jvs.c',
|
|
|
|
'jvs.h',
|
2018-11-07 21:41:31 +00:00
|
|
|
'nvram.c',
|
|
|
|
'nvram.h',
|
2018-11-08 01:03:25 +00:00
|
|
|
'sram.c',
|
|
|
|
'sram.h',
|
2018-11-07 21:40:39 +00:00
|
|
|
],
|
|
|
|
)
|