summaryrefslogtreecommitdiff
path: root/compile_gtk.sh
diff options
context:
space:
mode:
authorWalker Thompson <walker.thompson@urz.uni-heidelberg.de>2026-07-03 16:43:00 +0200
committerWalker Thompson <walker.thompson@urz.uni-heidelberg.de>2026-07-03 16:43:00 +0200
commit5f9d515e0f0a792ca99438ecc4f3bb3e06752836 (patch)
tree6f062588a485bd7853c490d006804a0f5c2c9c42 /compile_gtk.sh
parent37dd4d6f995587cb597e366a377391b264716f01 (diff)
Separate GTK and X11/Motif sources + compile scripts
Diffstat (limited to 'compile_gtk.sh')
-rwxr-xr-xcompile_gtk.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/compile_gtk.sh b/compile_gtk.sh
new file mode 100755
index 0000000..1270268
--- /dev/null
+++ b/compile_gtk.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+cd "$(dirname "$0")" || exit
+test "$(uname -s)" = "FreeBSD" || exit
+cc voss_devctl_gtk.c -g -o voss-devctl \
+ -Wall -Wpedantic -Werror -Wextra \
+ `pkg-config --cflags gtk+-3.0` \
+ `pkg-config --libs gtk+-3.0`