Embedded console into REPL

This commit is contained in:
2022-12-19 18:16:51 +00:00
parent 0f90215b7a
commit 9bdb7ce9cb
5 changed files with 43 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ PTYPE != uname -m
# DBG=0,1 --- build with debugging symbols and logging
# ED=0,1 --- build with or without editor
NAME = yugine
ifeq ($(DBG), 1)
@@ -65,12 +65,15 @@ ifeq ($(OS), WIN32)
LINKER_FLAGS = $(QFLAGS) -static
ELIBS = engine ucrt yughc portaudio glfw3 opengl32 gdi32 ws2_32 ole32 winmm setupapi m
CLIBS =
EXT = .exe
else
LINKER_FLAGS = $(QFLAGS) -L/usr/local/lib
ELIBS = engine pthread yughc portaudio asound glfw3 c m dl
CLIBS =
endif
NAME = yugine$(EXT)
ELIBS != $(call prefix, $(ELIBS), -l)
CLIBS != $(call prefix, $(CLIBS), -l);