aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e7770ac..d1d5630 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,13 @@
3 3
4# Source code location and files to watch for changes. 4# Source code location and files to watch for changes.
5SRC_DIR := src 5SRC_DIR := src
6SHADERS_DIR := shaders
6SRC_MAIN := $(SRC_DIR)/main.c 7SRC_MAIN := $(SRC_DIR)/main.c
7SRC_APP := $(SRC_DIR)/app.c 8SRC_APP := $(SRC_DIR)/app.c
8WATCH_SRC := $(wildcard $(SRC_DIR)/*.c) 9WATCH_SRC := $(wildcard $(SRC_DIR)/*.c)
9WATCH_SRC += $(wildcard $(SRC_DIR)/*.h) 10WATCH_SRC += $(wildcard $(SRC_DIR)/*.h)
11WATCH_SRC += $(wildcard $(SHADERS_DIR)/*.vert)
12WATCH_SRC += $(wildcard $(SHADERS_DIR)/*.frag)
10 13
11# Output library names and executables. 14# Output library names and executables.
12BIN_NAME := app 15BIN_NAME := app