jdict

command line tool for looking up terms in yomidict dictionaries
git clone anongit@rnpnr.xyz:jdict.git
Log | Files | Refs | Feed | README | LICENSE

build.sh (169B)


      1 #!/bin/sh
      2 set -x
      3 
      4 cflags="-march=native -O3 -std=c99 -Wall -Wextra -pedantic"
      5 cflags="$cflags -D_BSD_SOURCE"
      6 ldflags="-s -static"
      7 
      8 cc $cflags $ldflags jdict.c -o jdict