Reorganise code

This commit is contained in:
Abdelrahman Said 2024-08-18 15:23:21 +01:00
parent ff207a458e
commit fbf3f17b8f
17 changed files with 4 additions and 2 deletions

View File

@ -3,9 +3,11 @@
CC=clang CC=clang
WAPP_INCLUDE="$(find intern/wapp/src -type d | xargs -I{} echo -n "-I{} ")" WAPP_INCLUDE="$(find intern/wapp/src -type d | xargs -I{} echo -n "-I{} ")"
WAPP_SRC="$(find intern/wapp/src -type f -name "*.c" | xargs -I{} echo -n "{} ")" WAPP_SRC="$(find intern/wapp/src -type f -name "*.c" | xargs -I{} echo -n "{} ")"
CFLAGS="-g -Isrc $WAPP_INCLUDE" TINYRENDER_INCLUDE="$(find src -type d | xargs -I{} echo -n "-I{} ")"
TINYRENDER_SRC="$(find src -type f -name "*.c" | xargs -I{} echo -n "{} ")"
CFLAGS="-g $TINYRENDER_INCLUDE $WAPP_INCLUDE"
LIBS="-lm" LIBS="-lm"
SRC="src/*.c $WAPP_SRC" SRC="$TINYRENDER_SRC $WAPP_SRC"
OUT=tiny OUT=tiny
(set -x ; $CC $CFLAGS $LIBS $SRC -o $OUT) (set -x ; $CC $CFLAGS $LIBS $SRC -o $OUT)