42 lines
580 B
Prolog
42 lines
580 B
Prolog
JOEY = /home/scott/joey
|
|
include($$JOEY/dist/joey.pri)
|
|
|
|
#ZIP_FLAGS = \
|
|
# -DANSI_COLOR \
|
|
# -DUNIX \
|
|
# -DSCREEN_WIDTH=40 \
|
|
# -DSCREEN_HEIGHT=25
|
|
|
|
#QMAKE_CFLAGS += $$ZIP_FLAGS
|
|
|
|
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
|
|
|
|
OTHER_FILES += \
|
|
build-IIgs.sh \
|
|
postlink.sh \
|
|
notes.txt \
|
|
gamedata.dat
|
|
|
|
linux:QMAKE_POST_LINK = $$PWD/postlink.sh "$$PWD" "$$JOEY"
|