From 16d68d52e549f17ecd3e0de342a4b302d23c3bee Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Sun, 2 Oct 2022 15:56:40 -0500 Subject: [PATCH] DOS build updated to new project layout. --- Makefile.djgpp | 1 + build.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.djgpp b/Makefile.djgpp index a8287ce..76020b1 100644 --- a/Makefile.djgpp +++ b/Makefile.djgpp @@ -80,6 +80,7 @@ ALL_LDLIBS := $(LDLIBS) -lc # Source, Binaries, Dependencies SRC := $(shell find $(SRCDIR)/roo-e -type f -name '*.c') SRC += $(shell find $(SRCDIR)/shared -type f -name '*.c') +SRC += $(shell find $(SRCDIR)/test -type f -name '*.c') OBJ := $(patsubst $(SRCDIR)/%,$(OBJDIR)/%,$(SRC:.c=.o)) DEP := $(OBJ:.o=.d) BIN := $(BINDIR)/$(TARGET) diff --git a/build.sh b/build.sh index 0df6af6..353fde1 100755 --- a/build.sh +++ b/build.sh @@ -33,7 +33,8 @@ mkdir -p \ obj/shared/thirdparty/memwatch \ obj/roo-e/src/platform \ - obj/roo-e/src/gui/widgets + obj/roo-e/src/gui/widgets \ + obj/test/src source /opt/cross/djgpp/setenv