diff options
| author | Michael Forney <mforney@mforney.org> | 2020-06-22 01:07:27 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2020-06-22 23:07:47 -0700 |
| commit | e6afdebdfe8b8874eb2ecfd8bcb1c81b97966649 (patch) | |
| tree | 602a9ac2670c002d25cf6e6861eb77ac8598e27e /pkg/fspec-sync/gen.lua | |
| parent | b5bf3a93d83e2e72bbb05fd5c2e94e122b8435d2 (diff) | |
Add fspec-sync git
Diffstat (limited to 'pkg/fspec-sync/gen.lua')
| -rw-r--r-- | pkg/fspec-sync/gen.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pkg/fspec-sync/gen.lua b/pkg/fspec-sync/gen.lua new file mode 100644 index 00000000..6c77199d --- /dev/null +++ b/pkg/fspec-sync/gen.lua @@ -0,0 +1,12 @@ +cflags{ + '-std=c99', '-Wall', '-Wpedantic', '-Wno-maybe-uninitialized', + '-isystem $builddir/pkg/b3sum/include', +} + +lib('libcommon.a', {'fatal.c', 'parse.c', 'reallocarray.c'}) + +exe('fspec-hash', {'fspec-hash.c', 'libcommon.a', '$builddir/pkg/b3sum/libblake3.a'}, {'pkg/b3sum/headers'}) +exe('fspec-sort', {'fspec-sort.c', 'libcommon.a'}) +exe('fspec-tar', {'fspec-tar.c', 'libcommon.a'}) + +fetch 'git' |
