From c1afaa834b8269428ed8efd07a9dae3fc335f1d4 Mon Sep 17 00:00:00 2001 From: Joshua Weinstein Date: Sat, 2 Jun 2018 14:06:46 -0700 Subject: [PATCH] Added explanatory comments for Makefile --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7805882..fb9e6b1 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,19 @@ +# Wind Make File + CC = gcc +# Header Directory INC_DIR = include +# Determines the static memory size used for the data buffers. +# This value should be higher than WIND_MEM_LOAD WIND_MEM_BUF = 50000 +# Determines the static memory size used for the load buffer. +# This value should be less than WIND_MEM_BUF WIND_MEM_LOAD = 10000 -WIND_MEM_COMP = 5000 +# Determines the static memory size used for the computation buffer. +# This value should always be less than WIND_MEM_LOAD and WIND_MEM_BUF +# If large WindValues to not need to be handled, this can be left at a very low number. +WIND_MEM_COMP = 2000 C_FILES := $(wildcard src/*/*.c) OBJ_FILES := $(patsubst src/%,lib/%,$(C_FILES:.c=.o))