aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2022-03-05 22:51:07 +0100
committerBad Diode <bd@badd10de.dev>2022-03-05 22:51:07 +0100
commit40898e8340d8fe1ec73c0e7afb10cd257d62510a (patch)
tree9dfccb0939b0e5b6f371c37ff1508d32df7e3ada /Makefile
parent8c40fb31d36488b99045b7fa3641f8ce2cf1ff99 (diff)
downloaduxnfb-40898e8340d8fe1ec73c0e7afb10cd257d62510a.tar.gz
uxnfb-40898e8340d8fe1ec73c0e7afb10cd257d62510a.zip
Change build system to avoid compilation errors
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8c56874..83585f8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,9 @@
1BASE_UXN := src/uxn 1BASE_UXN := src/uxn
2SRC_DIR ?= src 2SRC_DIR ?= src
3BUILD_DIR ?= build 3BUILD_DIR ?= build
4SRC_MAIN ?= $(SRC_DIR)/main.c 4SRC_MAIN ?= $(SRC_DIR)/main.c \
5 $(BASE_UXN)/src/uxn.c \
6 $(BASE_UXN)/src/devices/system.c
5EXE_NAME ?= uxnfb 7EXE_NAME ?= uxnfb
6BIN := $(BUILD_DIR)/$(EXE_NAME) 8BIN := $(BUILD_DIR)/$(EXE_NAME)
7UXN_HEAD := $(BASE_UXN)/src/uxn.h 9UXN_HEAD := $(BASE_UXN)/src/uxn.h