annotate calc.pro @ 5:54edd85237ab

use signal to send input to qt interpreter object
author John W. Eaton <jwe@octave.org>
date Wed, 22 May 2019 18:07:37 -0400
parents 0e154787183d
children 822a2fe5bb51
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 MAKEFILE = calc.mk
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
4
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
3 SOURCES = \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
4 parser.cpp \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
5 interpreter.cpp \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
6 main.cpp \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
7 gui-main.cpp \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
8 tty-main.cpp \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
9 qt-interpreter.cpp
0
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10
4
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
11 HEADERS = \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
12 parser.h \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
13 interpreter.h \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
14 main.h \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
15 gui-main.h \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
16 tty-main.h \
0e154787183d new interpreter and qt_interpreter objects
John W. Eaton <jwe@octave.org>
parents: 0
diff changeset
17 qt-interpreter.h
0
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 LIBS += -lreadline
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 CONFIG += qt warn_on debug
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 QT += widgets
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 QMAKE_EXTRA_TARGETS += distclean
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 distclean.depends = extraclean
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 QMAKE_EXTRA_TARGETS += extraclean
dff751fb985c initial revision
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 extraclean.commands = rm -f parse.cpp