convertablet/build.sh

11 lines
247 B
Bash
Raw Normal View History

2023-07-11 15:55:43 +00:00
#!/bin/sh
set -ex;
SOURCES="main.c output_manager.c accel_monitor.c"
CFLAGS="-std=c2x -Wall -Wextra -pedantic $CFLAGS"
LIBS="-lwayland-client protocol/wlr-output-management-unstable-v1.c"
OUTPUT=miix-wlr
clang $CFLAGS $LIBS $SOURCES -o $OUTPUT