convertablet/build.sh

11 lines
280 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 usb_device_detection.c"
2023-07-11 15:55:43 +00:00
CFLAGS="-std=c2x -Wall -Wextra -pedantic $CFLAGS"
LIBS="-lwayland-client -lusb-1.0 protocol/wlr-output-management-unstable-v1.c"
2023-07-11 15:55:43 +00:00
OUTPUT=miix-wlr
clang $CFLAGS $LIBS $SOURCES -o $OUTPUT