From a00e7376520ad884dea02bafd4d8dac2f1071e59 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Mon, 29 Apr 2024 23:26:37 +0100 Subject: [PATCH] Update compile script --- compile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/compile b/compile index 8ec864e..d45905e 100755 --- a/compile +++ b/compile @@ -4,10 +4,7 @@ CC=clang CFLAGS="-g -Wall -Werror -pedantic -fsanitize=address -fsanitize=undefined" INCLUDES="\ -I$(find ./src -type d | xargs -I{} echo -n "-I{} ") \ - -Iintern/wizapp/aliases \ - -Iintern/wizapp/cpath/include \ - -Iintern/wizapp/dstr/include \ - $(find intern/wizapp/mem/include -type d | xargs -I{} echo -n "-I{} ") \ + $(find intern/wizapp/src -type d | xargs -I{} echo -n "-I{} ") \ $(pkg-config --cflags sdl2) \ " LIBS="\ @@ -16,9 +13,7 @@ LIBS="\ " SRC="\ $(find ./src -name *.c | xargs -I{} echo -n "{} ") \ - intern/wizapp/cpath/src/*.c \ - intern/wizapp/dstr/src/*.c \ - intern/wizapp/mem/src/*/*.c \ + $(find intern/wizapp/src -type f -name *.x | xargs -I{} echo -n "{} ") \ " OUT=tiffread