copied into the clipboard (if the current control which
has a focus is not an edit control, or if it is an edit
but has no selection)
added: when a user presses CTRL+V then a text from the clipboard
will be copied into the edit control (if a focus is not
on another edit control)
changed: Makefile: added rules: help, setup
and more small changes,
small changes in Makefileportable
changed: Makefile.dep
added: Makefile.help.sh
this script calls for Html Help Workshop
and when there was an error returns 1
and if success returns 0
(HtmlHW returns conversely)
git-svn-id: svn://ttmath.org/publicrep/ttcalc/trunk@50 e52654a7-88a9-db11-a3e9-0013d4bc506e
19 lines
455 B
Plaintext
19 lines
455 B
Plaintext
CC = g++
|
|
CFLAGS = -Wall -pedantic -s -Os -fno-default-inline -mwindows -mthreads -I../../../ttmath -DTTCALC_PORTABLE
|
|
name = ttcalcp.exe
|
|
dir_output = ../../output
|
|
compressor = upx
|
|
|
|
all: ttcalc
|
|
|
|
include Makefile.dep
|
|
|
|
$(dir_output)/$(name): $(o)
|
|
$(CC) -o $(dir_output)/$(name) $(CFLAGS) $(o) -lcomctl32
|
|
$(compressor) -7 $(dir_output)/$(name)
|
|
|
|
ttcalc: $(dir_output)/$(name)
|
|
|
|
resource.o: resource.rc
|
|
windres -DTTCALC_PORTABLE resource.rc resource.o
|