Split libnu into libplatform, libamex

Going to add some ALLS stuff to libplatform and the ALLS hardware
does not contain an AMEX board.
This commit is contained in:
Tau
2019-03-04 17:22:38 -05:00
parent 727ce5171f
commit bc297b2480
26 changed files with 76 additions and 53 deletions

18
platform/meson.build Normal file
View File

@ -0,0 +1,18 @@
platform_lib = static_library(
'platform',
include_directories : inc,
implicit_include_directories : false,
c_pch : [
'../precompiled.c',
'../precompiled.h',
],
dependencies : [
capnhook.get_variable('hook_dep'),
],
sources : [
'hwmon.c',
'hwmon.h',
'nusec.c',
'nusec.h',
],
)