opkg

statically linked package installer
git clone anongit@rnpnr.xyz:opkg.git
Log | Files | Refs | Feed | Submodules | README | LICENSE

gen.lua (301B)


      1 cflags({'-std=c99', '-Wall', '-Wextra', '-Wpedantic', '-Wno-unused-parameter'})
      2 
      3 exe('samu', {
      4 	'build.c',
      5 	'deps.c',
      6 	'env.c',
      7 	'graph.c',
      8 	'htab.c',
      9 	'log.c',
     10 	'parse.c',
     11 	'samu.c',
     12 	'scan.c',
     13 	'tool.c',
     14 	'tree.c',
     15 	'util.c',
     16 })
     17 file('bin/samu', '755', '$outdir/samu')
     18 man({'samu.1'})
     19 
     20 fetch('git')