Skip to content

Commit

Permalink
Added explanatory comments for Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jweinst1 committed Jun 2, 2018
1 parent f7627d3 commit c1afaa8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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))
Expand Down

0 comments on commit c1afaa8

Please sign in to comment.