DOS build updated to new project layout.

This commit is contained in:
Scott Duensing 2022-10-02 15:56:40 -05:00
parent a81d3406e0
commit 16d68d52e5
2 changed files with 3 additions and 1 deletions

View file

@ -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)

View file

@ -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