teaui/build.sh

9 lines
157 B
Bash
Raw Normal View History

#!/bin/sh
set -xe
CFLAGS=$(pkg-config --cflags ncurses libcurl)
LIBS=$(pkg-config --libs ncurses libcurl)
gcc ${CFLAGS} -o main main.c giteaAPI.c ${LIBS}