mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
19 lines
382 B
Python
19 lines
382 B
Python
from build.c import clibrary
|
|
|
|
clibrary(
|
|
name="fatfs",
|
|
srcs=[
|
|
"./source/ff.c",
|
|
"./source/ffsystem.c",
|
|
"./source/ffunicode.c",
|
|
"./source/ff.h",
|
|
"./source/ffconf.h",
|
|
"./source/diskio.h",
|
|
],
|
|
hdrs={
|
|
"ff.h": "./source/ff.h",
|
|
"ffconf.h": "./source/ffconf.h",
|
|
"diskio.h": "./source/diskio.h",
|
|
},
|
|
)
|