INSTALL (885B)
1 Prerequisites 2 ============= 3 4 * C compiler - defaults in config.mk (HaikuOS needs Clang/LLVM) 5 6 7 Testing 8 ------- 9 10 * Perl ≥ 5.010 11 12 $ make test 13 14 15 Install 16 ------- 17 18 $ git clone https://git.sr.ht/~strahinja/ufold 19 $ cd ufold 20 $ cp config.$(uname -s) config.mk 21 $ su 22 # make install 23 24 With got[1]: 25 26 $ got clone https://git.sr.ht/~strahinja/ufold 27 $ got checkout ufold.git 28 $ cd ufold 29 $ cp config.$(uname -s) config.mk 30 $ su 31 # make install 32 33 34 Persistent build configuration file 35 ----------------------------------- 36 37 The file config.mk will be sourced when building targets which also accept 38 configuration through environment variables. For example, CPPFLAGS and PREFIX 39 are specified in config.mk. 40 41 Initially, there will be no config.mk, you will need to copy one of the 42 customized config.* files or write your own: 43 44 $ cp config.$(uname -s) config.mk || echo Write config.mk from scratch