table

Помоћни програм из командне линије за форматирање и приказ CSV-а
git clone https://git.sr.ht/~strahinja/table
Дневник | Датотеке | Референце | ПРОЧИТАЈМЕ | ЛИЦЕНЦА

INSTALL (835B)


      1 Prerequisites
      2 =============
      3 
      4 * C compiler - defaults in config.mk
      5 
      6 
      7 Install
      8 -------
      9 
     10 	$ git clone https://git.sr.ht/~strahinja/table
     11 	$ cd table
     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/table
     19 	$ got checkout table.git
     20 	$ cd table
     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, CC and PREFIX can be
     31 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
     37 
     38 [1]: https://gameoftrees.org