8 lines
243 B
Bash
8 lines
243 B
Bash
#!/bin/bash
|
|
|
|
CDK=../aux/cdk-5.0-20251014
|
|
tcc -lm -g -O2 -DHAVE_CONFIG_H -I$CDK/include -I. \
|
|
-D_DEFAULT_SOURCE -D_XOPEN_SOURCE=500 -D_XOPEN_SOURCE_EXTENDED \
|
|
-I ../aux -o term ../aux/lfifo.c ../tools/term.c $CDK/libcdk.a -lncurses
|
|
|