summaryrefslogtreecommitdiff
path: root/themes/Makefile
diff options
context:
space:
mode:
authorMatthew Kosarek <matthew@matthewkosarek.xyz>2023-09-27 08:03:04 -0400
committerMatthew Kosarek <matthew@matthewkosarek.xyz>2023-09-27 08:03:04 -0400
commit1da356d8a64c45c99871aca156ee9fdd3e10ec15 (patch)
tree00438481bc972c9606995af794be09189833510a /themes/Makefile
parentec0b1d450a0f6219b3b0d352cd6625ae05f62618 (diff)
Simplification of the Theme system with a more OO model
Diffstat (limited to 'themes/Makefile')
-rw-r--r--themes/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/Makefile b/themes/Makefile
index bfe42a3..45967f5 100644
--- a/themes/Makefile
+++ b/themes/Makefile
@@ -4,7 +4,7 @@ BUILD_DIR ?= ./dist
SRC_DIRS ?= ./src
CC := emcc
-CXX := emcc
+CXX := em++
SRCS := $(shell find $(SRC_DIRS) -name *.cpp -or -name *.c -or -name *.s)
OBJS := $(SRCS:%=$(BUILD_DIR)/%.o)
DEPS := $(OBJS:.o=.d)