diff options
author | Mike Buland <mike@xagasoft.com> | 2024-07-15 12:59:18 -0700 |
---|---|---|
committer | Mike Buland <mike@xagasoft.com> | 2024-07-15 12:59:18 -0700 |
commit | 499cdaf05204a40d86e0e1b4dd32709b3ab67e20 (patch) | |
tree | 5fa31a6e4b4e2c3abde43b4e52ef3a88f6cab864 /default.bld | |
parent | 4bf0f0c256693e30017f9bea60cf55aa97f8994a (diff) | |
download | libbu++-499cdaf05204a40d86e0e1b4dd32709b3ab67e20.tar.gz libbu++-499cdaf05204a40d86e0e1b4dd32709b3ab67e20.tar.bz2 libbu++-499cdaf05204a40d86e0e1b4dd32709b3ab67e20.tar.xz libbu++-499cdaf05204a40d86e0e1b4dd32709b3ab67e20.zip |
MyriadFs improvements and new helper tool.
I think the interface could be a lot better...but it does work and we
can use it examine and work with MyriadFs files.
Diffstat (limited to '')
-rw-r--r-- | default.bld | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/default.bld b/default.bld index aed9dee..07b562c 100644 --- a/default.bld +++ b/default.bld | |||
@@ -54,9 +54,9 @@ action "unit" | |||
54 | build: targets("unit tests"); | 54 | build: targets("unit tests"); |
55 | } | 55 | } |
56 | 56 | ||
57 | action "myriadfs" | 57 | action "mount.myriadfs" |
58 | { | 58 | { |
59 | build: "myriadfs"; | 59 | build: "mount.myriadfs"; |
60 | } | 60 | } |
61 | 61 | ||
62 | target ["src/autoconfig.h", "src/version.h"] | 62 | target ["src/autoconfig.h", "src/version.h"] |
@@ -181,12 +181,12 @@ target files("src/extra/*.cpp").replace("src/extra/","").replace(".cpp","") | |||
181 | // I'm honestly not 100% sure what the policy should be yet, but this seems like | 181 | // I'm honestly not 100% sure what the policy should be yet, but this seems like |
182 | // I shouldn't have to do it this way. | 182 | // I shouldn't have to do it this way. |
183 | // | 183 | // |
184 | target "src/extra/myriadfs.o" | 184 | target "src/extra/mount.myriadfs.o" |
185 | { | 185 | { |
186 | CXXFLAGS += "-D_FILE_OFFSET_BITS=64"; | 186 | CXXFLAGS += "-D_FILE_OFFSET_BITS=64"; |
187 | } | 187 | } |
188 | 188 | ||
189 | target "myriadfs" | 189 | target "mount.myriadfs" |
190 | { | 190 | { |
191 | LDFLAGS += "-lfuse -lpthread"; | 191 | LDFLAGS += "-lfuse -lpthread"; |
192 | } | 192 | } |