aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rwxr-xr-xmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/make b/make
deleted file mode 100755
index 2fcfe88..0000000
--- a/make
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-DEBUG=""
-LIB="-Ilib/ -lSDL2_gfx $(pkg-config --cflags --libs libpipewire-0.3) -I/usr/include/spa-0.2"
-
-while getopts "d" opt; do
- case "$opt" in
- d) DEBUG="-Wall -fsanitize=address -g"
- ;;
- esac
-done
-
-shift $((OPTIND-1))
-[ "${1:-}" = "--" ] && shift
-
-printf "\n\nmaking project\n"
-clang -o "audio_reactive" src/main.c $LIB `sdl2-config --cflags --libs` -lm $DEBUG