74 lines
919 B
Prolog
74 lines
919 B
Prolog
TEMPLATE = app
|
|
CONFIG += console
|
|
CONFIG -= \
|
|
app_bundle \
|
|
qt
|
|
|
|
DESTDIR = $$OUT_PWD/build
|
|
|
|
JOEY = /home/scott/joey
|
|
|
|
JOEY_INCLUDES = \
|
|
$$JOEY/dist
|
|
|
|
JOEY_HEADERS = \
|
|
$$JOEY/dist/joey.h
|
|
|
|
JOEY_LIBS = \
|
|
-L$$JOEY/dist/linux/x64 \
|
|
-Wl,-rpath,$$JOEY/dist/linux/x64 \
|
|
-Wl,--enable-new-dtags \
|
|
-l:joeylib.a \
|
|
-Wl,--no-undefined \
|
|
-ldl \
|
|
-lsndio \
|
|
-lpthread \
|
|
-lrt \
|
|
-lm
|
|
|
|
JOEY_FLAGS = \
|
|
-pthread \
|
|
-D_REENTRANT
|
|
|
|
ZIP_FLAGS = \
|
|
-DANSI_COLOR \
|
|
-DUNIX \
|
|
-DSCREEN_WIDTH=40 \
|
|
-DSCREEN_HEIGHT=25 \
|
|
|
|
QMAKE_CFLAGS += \
|
|
$$JOEY_FLAGS
|
|
|
|
INCLUDEPATH += \
|
|
$$JOEY_INCLUDES
|
|
|
|
HEADERS += \
|
|
$$JOEY_HEADERS \
|
|
ansiterm.h \
|
|
ztypes.h
|
|
|
|
SOURCES += \
|
|
main.c \
|
|
ansiterm.c \
|
|
control.c \
|
|
extern.c \
|
|
fileio.c \
|
|
input.c \
|
|
interpre.c \
|
|
math.c \
|
|
memory.c \
|
|
object.c \
|
|
operand.c \
|
|
osdepend.c \
|
|
property.c \
|
|
quetzal.c \
|
|
screen.c \
|
|
text.c \
|
|
variable.c \
|
|
joeyio.c
|
|
|
|
LIBS += \
|
|
$$JOEY_LIBS \
|
|
|
|
DISTFILES += \
|
|
build-IIgs.sh
|