reflow

Преобликује пасусе у редове
git clone https://git.sr.ht/~strahinja/reflow
Дневник | Датотеке | Референце | ПРОЧИТАЈМЕ | ЛИЦЕНЦА

INSTALL (840B)


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