1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
|
# Hello, emacs: this is a -*- Makefile -*-
#
# GNUPLOT Makefile for MinGW/MSYS or MinGW-w64/MSYS2 on Windows
#
# Note: Currently MinGW cannot be used to compile gnuplot unless
# libraries / headers are updated.
# Note that Mingw-w64 needs to be configured with --enable-secure-api, and
# MINGW_HAS_SECURE_API must be defined in _mingw.h.
#
# See http://www.mingw.org or http://msys2.github.io/ for more details.
# To compile gnuplot for Windows:
# - Change the configuration section in 'config/mingw/Makfile' to
# match your setup.
# - On the MSYS/MSYS2 prompt, change directory to 'config/mingw' and issue
# the commands
# make all
# make install
#
# This makefile was tested with
# MSYS, MinGW32 and Microsoft HTML Help 1.4 SDK.
# MSYS2, MinGW-w64
#
# ************** Begin of Configuration section ************************
#
# Choose target to compile:
# 1. PLAIN: wgnuplot.exe: The usual Windows GUI for input commands.
# 2. PIPES: wgnuplot_pipes.exe: Like wgnuplot, but with an additional console
# window, so you can see the output of commands like
# plot '<awk -f preprocess.awk my.dat') or x=system('ls -1')
# 3. CONSOLE: gnuplot.exe: Console mode instead of GUI for the text input.
#
# Enable exactly one of these:
VARIANT = PLAIN
#VARIANT = PIPES
#VARIANT = CONSOLE
# Comment out the definition lines to disable the according features:
# Define this only if doing a release build
RELEASE=1
# Set-up your compiler environment
#
# Define if you are using MSYS2/MinGW64 instead of MSYS/MinGW
MINGW64=1
# Define if you want a 32bit version (even using a 64bit compiler)
#M32=1
# Define if you use clang instead of gcc, requires MINGW64
#CLANG=1
# Use the colorgcc frontend explicitly
#COLORGCC=1
# Specify the path to the compiler unless it is already in PATH
#CCPATH = g:/mingw32/bin/
#CCPATH = c:/apps/mingw/bin/
# Path to 32bit programs
# On 32bit machines:
#PROGRAMFILES32="$(PROGRAMFILES)"
#PROGRAMFILES32=/c/Program\ Files
# On 64bit machines: (no access to ProgramFiles(x86) variable!)
PROGRAMFILES32=/c/Program\ Files\ \(x86\)
# Define if you would like a UNICODE build
UNICODE=1
# GIF, PNG, JPEG device drivers
# Requires gd library. There are two possibilities how to configure these
# drivers for use in gnuplot, depending on the gd version. See README.1ST for
# more details.
#
# You should compile gnuplot with GD library v2.0 or newer.
# This library writes PNG, GIF and JPEG images.
# If libgd has been compiled with TrueType font support, then you can use
# scaled TrueType fonts. If not, then uncomment FREETYPE.
# Requires GD, PNG and Z libraries, optionally libfreetype.
# In some cases, libfreetype can depend on additional libraries such as
# fontconfig or iconv; then, uncomment GDAUTOCONFIGLIBS so that all of the
# libraries needed for linking will be taken by running 'gdlib-config'.
# Uncomment BGD if you want to use the binary DLL version of libgd.
#NEWGD=1
#JPEG=1
#FREETYPE=1
#GDAUTOCONFIGLIBS=1
#GDPKGCONFIG=1
#BGD=1
# PDF device driver
# Requires PNG and Z libraries based on particular PDF library used, and
# optionally also TIFF library according to
# 1. defined PDF_NOTIFF:
# 'Light' pdf library (produces wgnuplot.exe only 200 KB larger!)
# You can get this pdf library by compiling it without PNG, GD and TIFF
# support: change pdflib/p_intern.h and recompile the pdf library.
# Gnuplot does not use the tiff routines, and gd/png are elsewhere.
# 2. undefined PDF_NOTIFF:
# Full pdf library (produces wgnuplot.exe 500 KB larger!)
#PDF=1
#PDF_NOTIFF=1
# DEBUGging support
# creates binaries suitable for debugging. Some bugs may come and go
# as opposed to a production build since we lower the optimization level
#DEBUG=1
# MOUSE support for the windows terminal
MOUSE=1
# Cairo/Pango terminals
# Uncomment the following lines to select the pngcairo and pdfcairo
# terminals
#CAIROTERMS=1
#CAIROLIBS=1
# wxt interactive terminal
# Requires wxWidgets, Cairo, Pango, and their respective dependencies.
# Uncomment the following lines to compile it.
#WXT=1
#CAIROLIBS=1
# Include webp terminal
# Requires webp lib and cairo libraries.
#WEBP=1
# Build qt terminal?
#QT=1
# specify QT installation directory
#QT_DIR = /c/Qt/5.2.1/mingw48_32
ifndef MINGW64
QT_DIR = /d/Source/Qt-5.2.1-mingw/5.2.1/mingw48_32
else
ifdef M32
QT_DIR = /mingw32
else
QT_DIR = /mingw64
endif
endif
# Uncomment the following line to select the lua/tikz terminal
#LUA=lua
# Uncomment the following line to select the caca terminal
# Requires libcaca version 0.99.beta15 or newer. A post-beta18
# svn version is recommended since it contains an improved
# win32 backend.
#CACA=1
# Uncomment if you have libiconv
ICONV=1
# Uncomment if you have libcerf
# https://jugit.fz-juelich.de/mlz/libcerf
CERF=1
# Uncomment if you have libopenspecfun
# https://github.com/JuliaMath/openspecfun
OPENSPECFUN=1
# Uncomment if console mode gnuplot should use GNU readline
# (not recommended)
#GNUREADLINE=1
# Uncomment if you want to use watchpoints
#WATCHPOINTS=1
# Uncomment if you want to use polar grid
#POLAR_GRID=1
# Uncomment if you want to use functionblocks
#FUNCTIONBLOCKS=1
# Uncomment if you want a stable sort for pm3d and hidden3d surfaces
#STABLE_SORT=1
# Uncomment if you want to use Direct2D 1.1 (Windows 8 and Windows 7 Platform Update)
DIRECT2D11=1
# GRX graphics library, for debugging the DJGPP svga terminal
#GRX=1
GRXPATH=c:/Source/grx249
# or, the MGRX fork of GRX
#MGRX=1
MGRXPATH=c:/Source/mgrx
# Below you can adapt paths according to your software setup:
# Where to install the PostScript prologue files, relatively to the
# executable in bin/wgnuplot.exe
GNUPLOT_PS_DIR = share/PostScript
# Similarly for javascript files for the canvas terminal:
GNUPLOT_JS_DIR = share/js
# Similarly for translation files for the qt terminal:
GNUPLOT_QT_DIR = share/qt
# Similarly for scripts used by the lua terminal
GNUPLOT_LUA_DIR = share/lua
# Install will put TeX files here:
GNUPLOT_TEX_DIR = share/texmf/tex
# gnuplot will look for gnuplotrc here:
GNUPLOT_SHARE_DIR = share
# Destination directory, used in 'make install':
#DESTDIR = /local/opt/gnuplot-4.5
DESTDIR = "$(PROGRAMFILES)/gnuplot"
# Do you want some special optimization / flags?
#CFLAGS +=
CWFLAGS += -Wno-unused-function
ifdef CLANG
CFLAGS += -fcolor-diagnostics -fansi-escape-codes
CWFLAGS += -Wno-incompatible-ms-struct -Wno-ignored-attributes
CWFLAGS += -Wno-infinite-recursion
CXXFLAGS += -std=c++11
endif
ifdef MINGW64
# This does not seem to work even if GCC_COLORS is set.
#CFLAGS += -fdiagnostics-color=always
endif
# To compile the .chm file you need the Microsoft HTML Help 1.4 SDK
# It can be obtained here:
# http://go.microsoft.com/fwlink/?LinkId=154968
# We need to explicitly set the correct path here since we also need
# adjust the include and library paths.
HHWPATH = $(PROGRAMFILES32)/HTML\ Help\ Workshop/
HHC = $(HHWPATH)hhc
# Choose which resource compiler you want to use (GNU windres or MS rc):
GNU_RC = 1
ifndef GNU_RC
# If uncommented GNU_RC above and rc.exe not in PATH, then set:
MSSDK = c:/mssdk
endif
# GNU sort
GNUSORT = /bin/sort
# Inno Setup Compiler
# get it from: http://www.jrsoftware.org/isdl.php
# Use unicode version of Inno Setup Compiler but not Standard version
# because the setup file of gnuplot installer is now encoded utf-8 with BOM.
ISCC = $(PROGRAMFILES32)/Inno\ Setup\ 6/iscc
#DLLS = 1
# Directory that might contain extra files to be shipped with the installer.
# This should include dependencies like DLLs, but also fontconfig configuration files.
ifdef MINGW64
ifdef M32
#EXTRADIST = /d/gnuplot/dist32
else
#EXTRADIST = /d/gnuplot/dist64
endif
else
#EXTRADIST = /d/gnuplot/dist
endif
#
# *************** End of Configuration section *************************
#
# There shouldn't be anything to be changed below this line
# **********************************************************************
#
# We enforce to use console mode gnuplot to run gnuplot scripts in order
# to see their output during make.
TARGET=gnuplot.exe
BUILT_SOURCES = allterm.h allterm-ja.h
ifdef MINGW64
ifdef M32
CFLAGS += -m32
else
CFLAGS += -m64
endif
else
# MINGW32 always produces 32bit executables
ifndef M32
M32=1
endif
endif
ifndef CLANG
ifdef COLORGCC
CC=$(CCPATH)color-gcc
CXX=$(CCPATH)color-g++
else # !COLORGCC
ifdef (CCPATH)
CC = $(CCPATH)gcc
CXX = $(CCPATH)g++
else #!CCPATH
CC = gcc
CXX = g++
endif
endif
else # CLANG
CC = $(CCPATH)clang
CXX = $(CCPATH)clang++
endif
LD = $(CC)
LDX = $(CXX)
RM = rm -f
CP = cp -p
ifdef DEBUG
CFLAGS += -g -Wall -pipe
LDFLAGS += -g
else
CFLAGS += -O2 -pipe
LDFLAGS += -s
endif
ifdef UNICODE
CFLAGS += -DUNICODE -D_UNICODE
LDFLAGS2 += -municode
endif
CFLAGS += $(CWFLAGS)
TOP = ../..
# macros for makefile.all
O=o
S=$(TOP)/src
W=$(S)/win
T=$(TOP)/term/
D=$(TOP)/docs/
M=$(TOP)/demo/
VPATH = $(S):$(S)/wxterminal
CFLAGS += -DGNUPLOT_PS_DIR=\"$(GNUPLOT_PS_DIR)\"
TERMFLAGS = -DGNUPLOT_JS_DIR=\"$(GNUPLOT_JS_DIR)\"
TERMLIBS =
CFLAGS += -I. -I$(S) -I$(T) -DHAVE_CONFIG_H
CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
CFLAGS += -DWITH_CHI_SHAPES=1
CFLAGS += -DGNUPLOT_SHARE_DIR=\"$(GNUPLOT_SHARE_DIR)\"
CFLAGS_DOCS = -I. -I$(S) -DHAVE_CONFIG_H
ifndef RELEASE
CFLAGS += -DDEVELOPMENT_VERSION
endif
ifdef MOUSE
CFLAGS += -DUSE_MOUSE=1 -DWIN_IPC
endif
# Name of helpfiles:
HELPFILE = wgnuplot.chm
HELPFILEJA = wgnuplot-ja.chm
CFLAGS += -I$(HHWPATH)include
BUILDHELPFILE = $(D)windows/$(HELPFILE)
ifdef NEWGD
GD=1
PNG=1
endif
ifdef GD
CFLAGS += -DHAVE_LIBGD
ifndef BGD
TERMLIBS += -lgd
else
TERMLIBS += -lbgd
endif
endif
ifdef PNG
CFLAGS += -DHAVE_LIBPNG
ifndef BGD
ifndef GDAUTOCONFIGLIBS
ifndef GDPKGCONFIG
TERMLIBS += -lpng -lz
endif
endif
endif
endif
ifdef NEWGD
CFLAGS += -DHAVE_LIBGD -DHAVE_GD_H -DHAVE_GD_GIF -DGIF_ANIMATION -DHAVE_GD_PNG
ifdef GDPKGCONFIG
CFLAGS += $(shell pkg-config --cflags gdlib)
endif
ifdef JPEG
CFLAGS += -DHAVE_GD_JPEG
ifndef BGD
ifndef GDAUTOCONFIGLIBS
ifndef GDPKGCONFIG
TERMLIBS += -ljpeg
endif
endif
endif
endif
ifdef FREETYPE
CFLAGS += -DHAVE_GD_TTF
ifndef BGD
ifndef GDAUTOCONFIGLIBS
ifndef GDPKGCONFIG
TERMLIBS += -lfreetype
endif
endif
endif
endif
ifdef GDAUTOCONFIGLIBS
TERMLIBS += $(shell gdlib-config --libs)
endif
ifdef GDPKGCONFIG
TERMLIBS += $(shell pkg-config --libs gdlib)
endif
endif
ifdef PDF
CFLAGS += -DHAVE_LIBPDF
ifdef PDF_NOTIFF
TERMLIBS += -lpdf_notiff
else
TERMLIBS += -lpdf -ltiff
# TERMLIBS += -lpdf-w -ltiff-w
endif
ifndef PNG
NEED_PNG_W = 1
else
ifndef NEWGD
NEED_PNG_W = 1
endif
endif
ifdef NEED_PNG_W
CFLAGS += -DHAVE_LIBPNG
TERMLIBS += -lpng-w -lz-w
endif
endif
ifdef CAIROLIBS
CAIRO_CFLAGS := $(shell pkg-config --cflags cairo | sed s_-Ic:_-I/c_g)
PANGOCAIRO_CFLAGS := $(shell pkg-config --cflags glib-2.0 gobject-2.0 pangocairo cairo | sed s_-Ic:_-I/c_g)
PANGOCAIRO_LIBS := $(shell pkg-config --libs glib-2.0 gobject-2.0 pangocairo cairo | sed s_-Lc:_-L/c_g)
CAIRO_OBJS := gp_cairo.$(O) gp_cairo_helpers.$(O)
TERMFLAGS += $(PANGOCAIRO_CFLAGS)
endif
ifdef CAIROTERMS
CFLAGS += -DHAVE_CAIROPDF
TERMFLAGS += -DHAVE_CAIROEPS
ifdef WEBP
CFLAGS += -DHAVE_WEBP
TERMLIBS += -lwebp -lwebpmux
endif
endif
ifdef WXT
CFLAGS += -DWXWIDGETS
WXT_CXXFLAGS := $(shell wx-config --cxxflags)
CXXFLAGS += $(WXT_CXXFLAGS)
WX_LIBS := $(shell wx-config --libs | sed -e "s+-Wl,--subsystem,windows++g" -e "s+-mwindows++g")
WX_OBJS = wxt_gui.$(O)
endif
ifdef QT
QT_LIBS = -lQt5Core -lQt5Gui -lQt5Network -lQt5Svg -lQt5Widgets -lQt5PrintSupport -lqtmain
QT_CXXFLAGS = -I$(QT_DIR)/include -I$(QT_DIR)/include/Qt -I$(QT_DIR)/include/QtCore -I$(QT_DIR)/include/QtGui
QT_CXXFLAGS += -I$(QT_DIR)/include/QtWidgets -I$(QT_DIR)/include/QtNetwork
QT_CXXFLAGS += -I$(QT_DIR)/include/QtSvg -DQTGNUPLOT_DATA_DIR=\"$(GNUPLOT_QT_DIR)\"
QT_LDFLAGS = -L$(QT_DIR)/lib
CFLAGS += -DQTTERM -DQT_NO_OPENGL
TERMLIBS += $(QT_LIBS)
CXXFLAGS += $(QT_CXXFLAGS)
LDFLAGS += $(QT_LDFLAGS)
QT_OBJS = qt_term.$(O)
GNUPLOTQTOBJS = gnuplot_qt.o QtGnuplotWindow.o \
QtGnuplotApplication.o QtGnuplotWidget.o \
QtGnuplotScene.o QtGnuplotItems.o \
QtGnuplotEvent.o \
moc_QtGnuplotWindow.o moc_QtGnuplotApplication.o \
moc_QtGnuplotWidget.o moc_QtGnuplotScene.o \
moc_QtGnuplotEvent.o qrc_QtGnuplotResource.o
MOC = $(QT_DIR)/bin/moc
UIC = $(QT_DIR)/bin/uic
RCC = $(QT_DIR)/bin/rcc
LRELEASE = $(QT_DIR)/bin/lrelease
QT_FILES_TARGETS = qrc_QtGnuplotResource.cpp ui_QtGnuplotSettings.h moc_QtGnuplotWindow.cpp moc_QtGnuplotApplication.cpp
QT_FILES_TARGETS += moc_QtGnuplotWidget.cpp moc_QtGnuplotScene.cpp moc_QtGnuplotEvent.cpp
QT_TRANSLATION = qtgnuplot_fr.qm qtgnuplot_ja.qm
QT_TARGET = gnuplot_qt.exe
endif
ifdef LUA
CFLAGS += -DHAVE_LUA
TERMLIBS += -l$(LUA)
TERMFLAGS += -DGNUPLOT_LUA_DIR=\"$(GNUPLOT_LUA_DIR)\"
LUATARGETS += gnuplot-lua-tikz.sty
LUA_HELP = gnuplot-tikz.help
endif
ifdef CACA
CFLAGS += -DHAVE_LIBCACA
TERMLIBS += -lcaca
endif
ifdef MGRX
CFLAGS += -I$(MGRXPATH)/include -DHAVE_GRX -DHAVE_MGRX
ifdef M32
TERMLIBS += -L$(MGRXPATH)/lib/win32/ -lmgrx -lgdi32 -lfreetype
else
TERMLIBS += -L$(MGRXPATH)/lib/win64/ -lmgrx -lgdi32 -lfreetype
endif
else
ifdef GRX
ifdef M32
CFLAGS += -I$(GRXPATH)/include -DHAVE_GRX
TERMLIBS += -L$(GRXPATH)/lib/win32/ -lgrx20 -lgdi32
endif
endif
endif
ifdef ICONV
CFLAGS += -DHAVE_ICONV
TERMLIBS += -liconv
endif
ifdef CERF
CFLAGS += -DHAVE_LIBCERF -DNEED_CEXP
TERMLIBS += -lcerf -lm
endif
ifdef OPENSPECFUN
CFLAGS += -DHAVE_AMOS
TERMLIBS += -lopenspecfun_dll
endif
ifdef GNUREADLINE
# readline only usable for console mode gnuplot
EXTRA_CPPFLAGS_PLAIN = -DREADLINE
EXTRA_CPPFLAGS_PIPES = -DREADLINE
EXTRA_CPPFLAGS_CONSOLE = -DHAVE_LIBREADLINE -D HAVE_READLINE_READLINE_H -DHAVE_READLINE_HISTORY_H -DHAVE_READLINE_RESET
TERMLIBS_CONSOLE += -lreadline -lncurses
else
CFLAGS += -DREADLINE
endif
ifdef WATCHPOINTS
CFLAGS += -DUSE_WATCHPOINTS
endif
ifdef POLAR_GRID
CFLAGS += -DUSE_POLAR_GRID
endif
ifdef FUNCTIONBLOCKS
CFLAGS += -DUSE_FUNCTIONBLOCKS
endif
ifdef STABLE_SORT
CFLAGS += -DWITH_STABLE_SORT
endif
ifdef DIRECT2D11
CFLAGS += -DHAVE_D2D11
TERMLIBS += -ld3d11 -ldxguid -lwindowscodecs -lprntvpt
EXTRALIBS += prntvpt.lib
endif
ifdef GNU_RC
# RC = d:/cygnus/cygwin-b20/H-i586-cygwin32/bin/windres
RC = $(CCPATH)windres
RCFLAGS = --include-dir=$(W) \
--define __WIN32__ --define __WIN95__ \
--define __GNUWIN32__ --use-temp-file
RCOUT = wgplt_res.o
RES2COFF = echo wgplt_res.o
else
RC = $(MSSDK)/bin/rc
RCFLAGS = -v -i$(MSSDK)/include -i$(W) -dWIN32
RCOUT = -fowgnuplot.res
RES2COFF = res2coff -i wgnuplot.res -o wgplt_res.o
endif
ifdef RELEASE
VERSIONING = $(S)/version.c
else
VERSIONING = timestamp.h
endif
PATCHLEVEL := $(shell cat $(TOP)/PATCHLEVEL)
MAINVERSION := 6.0
SHORTVERSION := 60$(PATCHLEVEL)
NUMBERS := 0 1 2 3 4 5 6 7 8 9
ifeq ($(strip $(filter-out $(NUMBERS),$(PATCHLEVEL))),)
LONGVERSION := $(MAINVERSION).$(PATCHLEVEL)
else
LONGVERSION := $(MAINVERSION).0
endif
FULLVERSION := $(MAINVERSION) patchlevel $(PATCHLEVEL)
TARGETS_PLAIN = $(VERSIONING) config.h wgnuplot.exe wgnuplot.mnu $(QT_TARGET)
ifndef MINGW64
EXTRA_CPPFLAGS_PLAIN += -DUSE_FAKEPIPES
else
EXTRA_CPPFLAGS_PLAIN += -DPIPES
endif
TARGETS_PIPES = $(VERSIONING) config.h wgnuplot_pipes.exe wgnuplot.mnu $(QT_TARGET)
EXTRA_CPPFLAGS_PIPES += -DPIPES
TARGETS_CONSOLE = $(VERSIONING) config.h gnuplot.exe $(QT_TARGET)
EXTRA_CPPFLAGS_CONSOLE += -DWGP_CONSOLE -DPIPES
DEFAULT_TARGETS = $(VERSIONING) config.h $(TARGETS_$(VARIANT)) $(QT_TARGET)
default: $(DEFAULT_TARGETS)
windows: $(TARGETS_PLAIN)
plain: $(TARGETS_PLAIN)
pipes: $(TARGETS_PIPES)
console: $(TARGETS_CONSOLE)
docs: $(BUILT_SOURCES) gnuplot.pdf ps_symbols.pdf ps_fontfile_doc.pdf ps_guide.pdf
helpfile: $(HELPFILE)
ja: $(HELPFILEJA)
support: $(M)bf_test.exe $(QT_TRANSLATION) demo_plugin.dll $(LUATARGETS)
all: $(DEFAULT_TARGETS) $(TARGETS_PLAIN) $(TARGETS_PIPES) $(TARGETS_CONSOLE) $(HELPFILE) $(HELPFILEJA) support docs
# include the 'core makefile template'
include $(S)/makefile.all
OBJS = $(COREOBJS) version.$(O) gpexecute.$(O) $(WX_OBJS) $(CAIRO_OBJS) $(QT_OBJS)
WINOBJS = winmain.$(O) wgnuplib.$(O) wgraph.$(O) wprinter.$(O) \
wpause.$(O) wgdiplus.$(O) wd2d.$(O)
WINOBJS_WGNUPLOT = wtext.$(O) screenbuf.$(O) wmenu.$(O) wredirect.$(O)
# default rules
.SUFFIXES: .exe .o .co .po .c .lib .def
.c.o:
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) -MMD -MT '$*.o' -MF $*.d -o $@ $<
%.o: $W/%.c
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) -MMD -MT '$*.o' -MF $*.d -o $@ $<
%.o: $W/%.cpp
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) $(CXXFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
.c.po:
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) -MMD -MT '$*.po' -MF $*.pd -o $@ $<
%.po: $W/%.c
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) -MMD -MT '$*.po' -MF $*.pd -o $@ $<
%.po: $W/%.cpp
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) $(CXXFLAGS) -MMD -MT '$*.po' -MF $*.d -o $@ $<
.c.co:
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) -MMD -MT '$*.co' -MF $*.cd -o $@ $<
%.co: $W/%.c
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) -MMD -MT '$*.co' -MF $*.cd -o $@ $<
%.co: $W/%.cpp
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) $(CXXFLAGS) -MMD -MT '$*.co' -MF $*.d -o $@ $<
%.lib: %.def
ifndef M32
dlltool -d $^ -l $@
else
dlltool -k -d $^ -l $@
endif
LDLIBS = -lkernel32 -lgdi32 -lwinspool -lcomdlg32 -lcomctl32 -ladvapi32 -lshell32 -lmsimg32 -lgdiplus -lshlwapi -ld2d1 -ldwrite -lole32
LDLIBS += -lhtmlhelp
LDFLAGS2 += -Wl,--enable-auto-import -L$(HHWPATH)lib
ifdef MINGW64
LDFLAGS2 += -L.
endif
ifndef M32
EXTRALIBS += htmlhelp.lib
endif
# pull in dependency info for existing object files
ifndef NODEPS
-include $(OBJS:.$(O)=.d)
-include $(WINOBJS:.$(O)=.d)
-include $(WINOBJS_WGNUPLOT:.$(O)=.d)
-include $(OBJS:.$(O)=.pd)
-include $(WINOBJS:.$(O)=.pd)
-include $(WINOBJS_WGNUPLOT:.$(O)=.pd)
-include $(OBJS:.$(O)=.cd)
-include $(WINOBJS:.$(O)=.cd)
endif
# explicit rules
OBJS_PLAIN = $(OBJS) $(WINOBJS) $(WINOBJS_WGNUPLOT)
OBJS_PIPES = $(subst .o,.po,$(OBJS) $(WINOBJS) $(WINOBJS_WGNUPLOT))
OBJS_CONSOLE = $(subst .o,.co,$(OBJS) $(WINOBJS))
wgnuplot.exe: $(VERSIONING) $(OBJS_PLAIN) wgplt_res.o $(EXTRALIBS)
$(LDX) $(LDFLAGS) -mwindows $(LDFLAGS2) -o $@ $(OBJS_PLAIN) wgplt_res.o $(LDLIBS) \
$(TERMLIBS) $(TERMLIBS_PLAIN) $(WX_LIBS) $(PANGOCAIRO_LIBS)
wgnuplot_pipes.exe: $(VERSIONING) $(OBJS_PIPES) wgplt_res.o $(EXTRALIBS)
$(LDX) $(LDFLAGS) -mconsole $(LDFLAGS2) -o $@ $(OBJS_PIPES) wgplt_res.o $(LDLIBS) \
$(TERMLIBS) $(TERMLIBS_PIPES) $(WX_LIBS) $(PANGOCAIRO_LIBS)
gnuplot.exe: $(VERSIONING) $(OBJS_CONSOLE) wgplt_res.o $(EXTRALIBS)
$(LDX) $(LDFLAGS) -mconsole $(LDFLAGS2) -o $@ $(OBJS_CONSOLE) wgplt_res.o $(LDLIBS) \
$(TERMLIBS) $(TERMLIBS_CONSOLE) $(WX_LIBS) $(PANGOCAIRO_LIBS)
wgnuplot.mnu: $(W)/wgnuplot.mnu
$(CP) $^ $@
pgnuplot.exe: $(W)/pgnuplot.c version.o
$(CC) -O2 -DWINDOWS_NO_GUI -DHAVE_STDBOOL_H -s -o $@ $^ -I$(W) -I$(S) -luser32
wgplt_res.o: $(W)/wgnuplot.rc $(W)/wgnuplib.rc $(W)/wresourc.h $(W)/texticon.ico $(W)/grpicon.ico $(W)/wgnuplot.exe.manifest $(W)/wgnuplot.exe.manifest64
$(RC) $(RCFLAGS) $< $(RCOUT)
$(RES2COFF)
term.o: term.c term.h plot.h setshow.h bitmap.h $(CORETERM)
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) $(TERMFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
term.po: term.c term.h plot.h setshow.h bitmap.h $(CORETERM)
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) $(TERMFLAGS) -MMD -MT '$*.po' -MF $*.pd -o $@ $<
term.co: term.c term.h plot.h setshow.h bitmap.h $(CORETERM)
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) $(TERMFLAGS) -MMD -MT '$*.co' -MF $*.cd -o $@ $<
ifndef RELEASE
git_current := $(shell cut -c6- $(TOP)/.git/HEAD)
timestamp.h: $(TOP)/.git/${git_current} Makefile
@echo Creating $@
@echo "#ifndef GNUPLOT_TIMEBASE_H_INCLUDED" >$@t
@echo "#define GNUPLOT_TIMEBASE_H_INCLUDED" >>$@t
@echo "const char gnuplot_date[] = \"`git log -1 --format=%ci | cut -b-11`\";" >>$@t
@echo "#endif /* GNUPLOT_TIMEBASE_H_INCLUDED */" >> $@t
@if cmp -s $@ $@t; then rm -f $@t; else mv $@t $@; fi
else
$(S)/version.c: $(TOP)/PATCHLEVEL $(S)/Makefile.maint
$(MAKE) -C $(S) srcdir=. top_srcdir=.. -f Makefile.maint version.c
endif
# build timestamp.h first
$(OBJS_PLAIN): config.h $(VERSIONING)
$(OBJS_PIPES): config.h $(VERSIONING)
$(OBJS_CONSOLE): config.h $(VERSIONING)
wxt_gui.o: $(S)/wxterminal/wxt_gui.cpp $(S)/wxterminal/wxt_gui.h
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) $(CXXFLAGS) $(CAIRO_CFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
wxt_gui.po: $(S)/wxterminal/wxt_gui.cpp $(S)/wxterminal/wxt_gui.h
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) $(CXXFLAGS) $(CAIRO_CFLAGS) -MMD -MT '$*.po' -MF $*.pd -o $@ $<
wxt_gui.co: $(S)/wxterminal/wxt_gui.cpp $(S)/wxterminal/wxt_gui.h
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) $(CXXFLAGS) $(CAIRO_CFLAGS) -MMD -MT '$*.co' -MF $*.cd -o $@ $<
gp_cairo.o: $(S)/wxterminal/gp_cairo.c $(S)/wxterminal/gp_cairo.h
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) $(PANGOCAIRO_CFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
gp_cairo.po: $(S)/wxterminal/gp_cairo.c $(S)/wxterminal/gp_cairo.h
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) $(PANGOCAIRO_CFLAGS) -MMD -MT '$*.po' -MF $*.pd -o $@ $<
gp_cairo.co: $(S)/wxterminal/gp_cairo.c $(S)/wxterminal/gp_cairo.h
$(CC) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) $(PANGOCAIRO_CFLAGS) -MMD -MT '$*.co' -MF $*.cd -o $@ $<
qt_term.o: $(S)/qtterminal/qt_term.cpp $(S)/qtterminal/qt_term.h
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PLAIN) $(CXXFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
qt_term.po: $(S)/qtterminal/qt_term.cpp $(S)/qtterminal/qt_term.h
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_PIPES) $(CXXFLAGS) -MMD -MT '$*.po' -MF $*.pd -o $@ $<
qt_term.co: $(S)/qtterminal/qt_term.cpp $(S)/qtterminal/qt_term.h
$(CXX) -c $(CFLAGS) $(EXTRA_CPPFLAGS_CONSOLE) $(CXXFLAGS) -MMD -MT '$*.co' -MF $*.cd -o $@ $<
# Call the Qt resource compiler
qrc_QtGnuplotResource.cpp: $(S)/qtterminal/QtGnuplotResource.qrc
$(RCC) -name QtGnuplotResource -o $@ $<
# Call the Qt ui compiler
ui_QtGnuplotSettings.h: $(S)/qtterminal/QtGnuplotSettings.ui
$(UIC) -o $@ $<
# Call the Qt meta-object compiler
moc_QtGnuplotWindow.cpp: $(S)/qtterminal/QtGnuplotWindow.h
$(MOC) -o $@ $<
moc_QtGnuplotApplication.cpp: $(S)/qtterminal/QtGnuplotApplication.h
$(MOC) -o $@ $<
moc_QtGnuplotWidget.cpp: $(S)/qtterminal/QtGnuplotWidget.h
$(MOC) -o $@ $<
moc_QtGnuplotScene.cpp: $(S)/qtterminal/QtGnuplotScene.h
$(MOC) -o $@ $<
moc_QtGnuplotEvent.cpp: $(S)/qtterminal/QtGnuplotEvent.h
$(MOC) -o $@ $<
# end (Call the Qt ui compiler)
# Translation files
qtgnuplot_fr.qm: $(S)/qtterminal/po/qtgnuplot_fr.ts
$(LRELEASE) -qm $@ $<
qtgnuplot_ja.qm: $(S)/qtterminal/po/qtgnuplot_ja.ts
$(LRELEASE) -qm $@ $<
%.o: $(S)/qtterminal/%.cpp
$(CXX) -c $(CFLAGS) $(CXXFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
%.o: %.cpp
$(CXX) -c $(CFLAGS) $(CXXFLAGS) -MMD -MT '$*.o' -MF $*.d -o $@ $<
gnuplot_qt.exe: $(QT_FILES_TARGETS) $(GNUPLOTQTOBJS)
$(LDX) -Wl,--subsystem,windows $(LDFLAGS) -Wl,-Map=gnuplot_qt.map -o $@ $(GNUPLOTQTOBJS) $(QT_LIBS) -lshell32
demo_plugin.dll: $(M)plugin/demo_plugin.c
$(CC) $(CFLAGS) -I$(M)plugin -shared -o $@ $<
# convert gnuplot.doc to windows/wgnuplot.html
$(BUILDHELPFILE): doc2html.exe $(D)gnuplot.doc $(D)windows/wgnuplot.hhp $(D)windows/wgnuplot.hhk \
$(D)windows/wgnuplot.stp $(D)plotstyles.gnu $(CORETERM) $(TARGET)
./doc2html $(D)gnuplot.doc $(D)windows/
-./$(TARGET) -d -e "winhelp=1; cd '$(D)'" plotstyles.gnu
-$(HHC) $(D)windows/wgnuplot.hhp
$(HELPFILE): $(BUILDHELPFILE)
$(CP) $^ $@
htmlhelp.def: /c/Windows/System32/hhctrl.ocx
ifndef MINGW64
pexports $^ > $@
else
gendef - $^ > $@
endif
prntvpt.def: /c/Windows/System32/prntvpt.dll
ifndef MINGW64
pexports $^ > $@
else
gendef - $^ > $@
endif
# Working directory for patched Japanese sources
JA = ja/
JAD = $(JA)docs/
JADW = $(JAD)windows/
# Random file which receives patches by term-ja.diff to get dependencies right
JASRC = $(JA)term/cairo.trm
$(JASRC): $(D)gnuplot-ja.doc $(D)term-ja.diff $(CORETERM)
# Create a local copy of relevant sources
-mkdir $(JA)
-mkdir $(JA)term
-mkdir $(JAD)
-mkdir $(JA)demo
cp -r $(TOP)/term/* $(JA)term/
cp -r $(TOP)/docs/* $(JA)docs/
cp $(M)*.dat $(M)*.png $(M)*.rgb $(M)*.dem $(JA)demo/
# Apply patch for Japanese docs
-rm $(JAD)tex2ja.awk $(JAD)sjisenc.c
-(cd $(JA) ; patch -p0 -i docs/term-ja.diff)
wgnuplot-ja.chm: $(JASRC) doc2html-ja.exe \
$(D)windows/wgnuplot.hhp $(D)windows/wgnuplot.hhk \
$(D)windows/wgnuplot.stp $(D)plotstyles.gnu \
$(TARGET)
# FIXME: some files always end up read-only...
chmod +w $(JADW)*
# Create Japanese html source in EUC-JP encoding
./doc2html-ja $(JAD)gnuplot-ja.doc $(JADW)
# Change character encoding from EUC-JP to SHIFT-JIS
-iconv -c -s -f EUC-JP -t SHIFT-JIS $(JADW)wgnuplot.html > $(JADW)wgnuplot-ja.html
-iconv -c -s -f EUC-JP -t SHIFT-JIS $(JADW)wgnuplot.hhc > $(JADW)wgnuplot-ja.hhc
cp $(JADW)wgnuplot-ja.html $(JADW)wgnuplot.html
cp $(JADW)wgnuplot-ja.hhc $(JADW)wgnuplot.hhc
# Adjust Encoding and Language information
sed -i -e "s/charset=utf-8/charset=shift-jis/" $(JADW)wgnuplot.html
sed -i -e "s/charset=utf-8/charset=shift-jis/" $(JADW)wgnuplot.hhc
sed -i -e "s/Language=0x409 Englisch (USA)/Language=0x411 Japanisch (Japan)/" $(JADW)/wgnuplot.hhp
# Build help file
-./$(TARGET) -d -e "winhelp=1; cd '$(JAD)'" plotstyles.gnu
-$(HHC) $(JADW)wgnuplot.hhp
cp $(JADW)wgnuplot.chm $(HELPFILEJA)
doc2html.exe: $(CORETERM) $(D)windows/doc2html.c $(D)termdoc.c $(D)xref.c version.o $(LUA_HELP)
$(LD) $(LDFLAGS) -o $@ -DWINDOWS_NO_GUI \
-DVERSION_MAJOR='"$(MAINVERSION)"' -DPATCHLEVEL='"$(PATCHLEVEL)"' \
$(CFLAGS_DOCS) -I. -I$(D:/=) -I$(T:/=) \
$(D)windows/doc2html.c $(D)termdoc.c $(D)xref.c
doc2html-ja.exe: $(JASRC) $(D)windows/doc2html.c $(D)termdoc.c $(D)xref.c version.o $(LUA_HELP)
$(LD) $(LDFLAGS) -o $@ -DWINDOWS_NO_GUI \
-DVERSION_MAJOR='"$(MAINVERSION)"' -DPATCHLEVEL='"$(PATCHLEVEL)"' \
-DJAPANESE_DOC $(CFLAGS_DOCS) -I. -I$(JAD) -I$(JA)/term \
$(D)windows/doc2html.c $(D)termdoc.c $(D)xref.c
doc2ms.exe: $(D)doc2ms.c $(D)termdoc.c $(D)xref.c version.o $(LUA_HELP)
$(LD) $(LDFLAGS) -o $@ -DWINDOWS_NO_GUI $(CFLAGS) -I. -I$(D:/=) -I$(T:/=) $(D)doc2ms.c $(D)termdoc.c $(D)xref.c version.o
#make binary demo files
# WINDOWS_NO_GUI makes sure that wtext.h does not redefine fread() etc.
$(M)bf_test.exe: bf_test.c
$(LD) $(LDFLAGS) $(CFLAGS) -DWINDOWS_NO_GUI -o $@ $^
(cd $(M) ; ./bf_test.exe )
# Create config.h
config.h: $(TOP)/config/config.mgw
cp -p $< $@
# generate LUA TeX support files and terminal help
ifdef LUA
gnuplot-lua-tikz.sty: $(T)/lua/gnuplot-tikz.lua
$(LUA).exe $< style
$(LUA_HELP): $(T)/lua/gnuplot-tikz.lua
$(LUA).exe $< termhelp > $@
endif
# Create documentation in various formats
#
ALL_TERMINALS_DOC=1
ifdef ALL_TERMINALS_DOC
# Generate TeX documentation with the complete list of all terminals
# (gnuplot.tex should be the same on all platforms):
SORT_TERMINALS=1
ifdef SORT_TERMINALS
# sort alphabetically all terminals (note: req. GNU sort, not from MS)
allterm.h: $(CORETERM)
@echo "Building allterm.h"
@for e in `egrep "^[ ]*START_HELP" $(CORETERM) |\
$(GNUSORT) -f -t':' -k2` ; do \
f=`echo $$e |cut -d\: -f1` ; s=`echo $$e | cut -d\: -f2` ;\
sed -n "/^[ ]*$$s/,/^[ ]*END_HELP/p" $$f ; \
done >$@
else
# sequence of terminals according to "ls term/*.trm":
allterm.h: $(CORETERM) $(LUA_HELP)
@echo "Building allterm.h"
@cat $(T)*.trm > allterm.c
$(CPP) $(CFLAGS) -I$(T) -DTERM_DRIVER_H -DTERM_HELP allterm.c | \
sed '/^ *$$/d;/^#/d' > allterm.h
@rm -f allterm.c
endif
doc2tex.exe: $(D)doc2tex.c $(D)termdoc.c allterm.h allterm-ja.h $(CORETERM) $(LUA_HELP)
$(LD) $(LDFLAGS) -o $@ -DWINDOWS_NO_GUI -DALL_TERM_DOC $(CFLAGS) \
-I. -I$(D) -I$(T) $(D)doc2tex.c $(D)termdoc.c
else
# Old version: generate documentation with only currently used terminals:
doc2tex.exe: $(D)doc2tex.c $(D)termdoc.c $(LUA_HELP)
$(LD) $(LDFLAGS) -o $@ -DWINDOWS_NO_GUI $(CFLAGS) -I. -I$(D) -I$(T) $^
endif
allterm-ja.h: $(JASRC) $(LUA_HELP)
@echo "Building Japanese allterm-ja.h"
@for e in `egrep "^[ ]*START_HELP" $(subst $(T),$(JA)term/,$(CORETERM)) |\
$(GNUSORT) -f -t':' -k2` ; do \
f=`echo $$e |cut -d\: -f1` ; s=`echo $$e | cut -d\: -f2` ;\
sed -n "/^[ ]*$$s/,/^[ ]*END_HELP/p" $$f ; \
done >allterm-jp.h
iconv -f EUC-JP -t UTF-8 allterm-jp.h > allterm-ja.h
rm allterm-jp.h
doc2tex-ja.exe: allterm-ja.h allterm.h $(D)doc2tex.c $(D)termdoc.c
$(LD) $(LDFLAGS) -o $@ -DWINDOWS_NO_GUI \
-DALL_TERM_DOC \
-DVERSION_MAJOR='"$(MAINVERSION)"' -DPATCHLEVEL='"$(PATCHLEVEL)"' \
-DJAPANESE_DOC $(CFLAGS_DOCS) -I. -I$(JAD) -I$(JA)/term \
$(D)doc2tex.c $(D)termdoc.c
gnuplot.tex: $(D)gnuplot.doc doc2tex.exe
./doc2tex $(D)gnuplot.doc gnuplot.tex
gnuplot-figures.tex: $(D)gnuplot.doc doc2tex.exe $(TARGET)
GNUPLOT_LIB=$(M) ./$(TARGET) -d $(D)plotstyles.gnu
./doc2tex -figures $(D)gnuplot.doc gnuplot-figures.tex
gnuplot-figures-ja.tex: $(D)gnuplot.doc doc2tex-ja.exe $(TARGET)
GNUPLOT_LIB=$(M) ./$(TARGET) -d $(D)plotstyles.gnu
iconv -f EUC-JP -t UTF-8 $(D)gnuplot-ja.doc > ja.doc
./doc2tex-ja -figures ja.doc | sed 's/titlepag.tex/title-ja.tex/' > gnuplot-figures-ja.tex
rm ja.doc
gnuplot.dvi: gnuplot.tex $(D)toc_entr.sty $(D)titlepag.tex
cp gnuplot.tex gp_tex2.tex
cp -p $(D)toc_entr.sty .
cp -p $(D)titlepag.tex .
echo "" > pdffigures.tex
# Call LaTeX three times to get the toc right.
latex gp_tex2.tex && latex gp_tex2.tex && latex gp_tex2.tex
mv gp_tex2.dvi gnuplot.dvi
rm -f gp_tex2.*
gnuplot.ps: gnuplot.dvi
dvips -o gnuplot.ps gnuplot.dvi
gnuplot.pdf: gnuplot-figures.tex gpinsetfigure.tex $(D)toc_entr.sty $(D)titlepag.tex
cp gnuplot-figures.tex gp_tex2.tex
# Call LaTeX three times to get the toc right.
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: pdflatex gp_tex2.tex
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: pdflatex gp_tex2.tex
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: pdflatex gp_tex2.tex
# now include index
makeindex gp_tex2
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: pdflatex gp_tex2.tex
mv gp_tex2.pdf gnuplot.pdf
rm -f gp_tex2.*
# Prepare PDF copy of User Manual in Japanese
# This procedure assumes use of luatex with package luatexja
gnuplot-ja.pdf: gnuplot-figures-ja.tex gpinsetfigure.tex $(D)toc_entr.sty $(D)title-ja.tex
cp gnuplot-figures-ja.tex gp_tex2.tex
# Call LaTeX three times to get the toc right.
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: lualatex gp_tex2.tex
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: lualatex gp_tex2.tex
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: lualatex gp_tex2.tex
# now include index
makeindex gp_tex2
TEXINPUTS=.:$(TOP):$(D):${TEXINPUTS}: lualatex gp_tex2.tex
mv gp_tex2.pdf gnuplot-ja.pdf
rm -f gp_tex2.*
gpinsetfigure.tex: Makefile
echo "\usepackage{graphicx}" > gpinsetfigure.tex
echo "\usepackage{picins}" >> gpinsetfigure.tex
echo "\newcommand{\gpinsetfigure}[1]{" >> gpinsetfigure.tex ; \
echo " \parpic[r][rt]{\includegraphics[width=3in,keepaspectratio]{#1}}" >> gpinsetfigure.tex ; \
echo "}" >> gpinsetfigure.tex
gnuplot.ms: doc2ms.exe $(D)gnuplot.doc
./doc2ms $(D)gnuplot.doc gnuplot.ms
dos2unix gnuplot.ms
grops: $(D)titlepag.ms gnuplot.ms
sed "s,titlepag\.ms,$(D)titlepag\.ms," gnuplot.ms | \
groff -s -p -t -e -ms -k -K utf-8 -Tps > gnuplot.ps
gropdf: $(D)titlepag.ms gnuplot.ms
sed "s,titlepag\.ms,$(D)titlepag\.ms," gnuplot.ms | \
groff -s -p -t -e -ms -k -K utf-8 -Tpdf > gnuplot.pdf
ps_symbols.pdf: $(D)psdoc/ps_symbols.gpi
GNUPLOT_LIB=$(D)psdoc GNUPLOT_PS_DIR=$(T)PostScript ./$(TARGET) -d ps_symbols.gpi
ps2pdf ps_symbols.ps
ps_fontfile_doc.ps: $(D)psdoc/ps_fontfile_doc.tex
TEXINPUTS=$(D)psdoc:${TEXINPUTS}: latex ps_fontfile_doc
TEXINPUTS=$(D)psdoc:${TEXINPUTS}: latex ps_fontfile_doc
dvips -j0 ps_fontfile_doc
ps_fontfile_doc.pdf: $(D)psdoc/ps_fontfile_doc.tex
TEXINPUTS=$(D)psdoc:${TEXINPUTS}: pdflatex ps_fontfile_doc
TEXINPUTS=$(D)psdoc:${TEXINPUTS}: pdflatex ps_fontfile_doc
ps_guide.pdf: $(D)psdoc/ps_guide.ps
ps2pdf $(D)psdoc/ps_guide.ps ps_guide.pdf
latex_demo.pdf: gnuplot.exe $(M)/latex_demo.dem $(M)/latex_demo.tex
GNUTERM="dumb noenhanced" GNUPLOT_LIB=$(M) GNUPLOT_PS_DIR=$(T)/PostScript ./gnuplot latex_demo.dem
latex epslatex.tex
dvips -E epslatex -o latex_epslatex.eps
epstopdf latex_epslatex.eps
xelatex $(M)/latex_demo
# clean up temporary files
clean:
-$(RM) config.h wgnuplot.map wgnuplot.res
-$(RM) *.o *.po *.co *.d *.cd *.pd *.map
-$(RM) moc_*.cpp ui_*.h qrc_*.cpp
-$(RM) prntvpt.lib prntvpt.def
-$(RM) doc2*.exe $(W)/wgnuplib.res wgnuplib.map wgnuplot.lib
-$(RM) $(M)bf_test.exe demo_plugin.dll allterm.h allterm.c
-$(RM) *.aux *.log *.dvi *.toc
-$(RM) gnuplot.tex gnuplot-figures.tex gpinsetfigure.tex figure_*.pdf
-$(RM) titlepag.tex toc_entr.sty
-$(RM) eg?.tex eg?.eps linepoin.tex test.tex test_tikz.tex
-$(RM) $(D)windows/wgnuplot.log $(D)windows/wgnuplot.hhc
-$(RM) $(D)windows/*.png $(D)windows/wgnuplot.html
-$(RM) doc2html.exe
-$(RM) timestamp.h *.tmp *.par
-$(RM) -rf ./dist/ ./gnuplot/
-$(RM) -rf $(JA)
-$(RM) allterm-ja.h gnuplot-figures-ja.tex
-$(RM) doc2html-ja.exe doc2tex-ja.exe
-$(RM) latex_epslatex.eps latex_epslatex.pdf epslatex.* epslatex-inc.eps
-$(RM) latex_cairo.pdf latex_cairo.tex latex_pict2e.tex latex_tikz.tex
-$(RM) latex_demo.aux latex_demo.log
realclean: veryclean
veryclean: clean
$(RM) wgnuplot.exe wgnuplot_pipes.exe gnuplot.exe pgnuplot.exe
$(RM) gnuplot_qt.exe qtgnuplot_*.qm
-$(RM) $(HELPFILE) $(HELPFILEJA) wgnuplot.chw wgnuplot.gid wgnuplot.mnu
$(RM) gnuplot.ps gnuplot.pdf
-$(RM) gnuplot-ja.pdf
$(RM) ps_fontfile_doc.pdf ps_fontfile_doc.ps ps_guide.pdf
$(RM) ps_symbols.ps ps_symbols.pdf
$(RM) $(M)binary[123] $(M)fit.log $(M)soundfit.par
$(RM) gnuplot-lua-tikz.sty gnuplot-lua-tikz.tex
$(RM) gnuplot-lua-tikz-common.tex t-gnuplot-lua-tikz.tex
$(RM) latex_demo.pdf
# now move the whole stuff to its destination
install:
mkdir -p $(DESTDIR)
# binaries go to /bin
mkdir -p $(DESTDIR)/bin
cp -p gnuplot.exe $(DESTDIR)/bin/
cp -p wgnuplot.exe $(DESTDIR)/bin/
cp -p wgnuplot_pipes.exe $(DESTDIR)/bin/
cp -p $(W)/wgnuplot.mnu $(DESTDIR)/bin/
cp -p $(W)/wgnuplot-ja.mnu $(DESTDIR)/bin/
cp -p $(HELPFILE) $(DESTDIR)/bin/
ifdef HELPFILEJA
cp -p $(HELPFILEJA) $(DESTDIR)/bin/
endif
# configuration files
mkdir -p $(DESTDIR)/$(GNUPLOT_SHARE_DIR)
cp -p $(TOP)/share/gnuplotrc $(DESTDIR)/$(GNUPLOT_SHARE_DIR)
cp -p $(TOP)/share/*.gp $(DESTDIR)/$(GNUPLOT_SHARE_DIR)
# terminal support files
mkdir -p $(DESTDIR)/$(GNUPLOT_PS_DIR)
cp -p $(TOP)/term/PostScript/*.ps $(DESTDIR)/$(GNUPLOT_PS_DIR)/
cp -p $(TOP)/term/PostScript/*.txt $(DESTDIR)/$(GNUPLOT_PS_DIR)/
mkdir -p $(DESTDIR)/$(GNUPLOT_JS_DIR)
cp -p $(TOP)/term/js/*.* $(DESTDIR)/$(GNUPLOT_JS_DIR)/
cp -p $(TOP)/term/js/README $(DESTDIR)/$(GNUPLOT_JS_DIR)/
mkdir -p $(DESTDIR)/$(GNUPLOT_TEX_DIR)/generic/gnuplot
mkdir -p $(DESTDIR)/$(GNUPLOT_TEX_DIR)/plain/gnuplot
mkdir -p $(DESTDIR)/$(GNUPLOT_TEX_DIR)/latex/gnuplot
mkdir -p $(DESTDIR)/$(GNUPLOT_TEX_DIR)/context/gnuplot
cp -p $(TOP)/share/LaTeX/README $(DESTDIR)/$(GNUPLOT_TEX_DIR)/latex/gnuplot/
cp -p $(TOP)/share/LaTeX/gnuplot.cfg $(DESTDIR)/$(GNUPLOT_TEX_DIR)/latex/gnuplot/
ifdef QT
mkdir -p $(DESTDIR)/$(GNUPLOT_QT_DIR)
cp -p gnuplot_qt.exe $(DESTDIR)/bin/
cp -p qtgnuplot_*.qm $(DESTDIR)/$(GNUPLOT_QT_DIR)/
endif
ifdef LUA
mkdir -p $(DESTDIR)/$(GNUPLOT_LUA_DIR)
cp -p $(TOP)/term/lua/README $(DESTDIR)/$(GNUPLOT_LUA_DIR)/
cp -p $(TOP)/term/lua/NEWS $(DESTDIR)/$(GNUPLOT_LUA_DIR)/
cp -p $(TOP)/term/lua/TODO $(DESTDIR)/$(GNUPLOT_LUA_DIR)/
cp -p $(TOP)/term/lua/gnuplot-tikz.lua $(DESTDIR)/$(GNUPLOT_LUA_DIR)/
cp -p gnuplot-lua-tikz.sty $(DESTDIR)/$(GNUPLOT_TEX_DIR)/latex/gnuplot/
cp -p gnuplot-lua-tikz.tex $(DESTDIR)/$(GNUPLOT_TEX_DIR)/plain/gnuplot/
cp -p t-gnuplot-lua-tikz.tex $(DESTDIR)/$(GNUPLOT_TEX_DIR)/context/gnuplot/
cp -p gnuplot-lua-tikz-common.tex $(DESTDIR)/$(GNUPLOT_TEX_DIR)/generic/gnuplot/
endif
# README etc
cp -p $(TOP)/Copyright $(DESTDIR)/
cp -p $(TOP)/win/Copyright-ja.txt $(DESTDIR)/
cp -p $(TOP)/README $(DESTDIR)/
cp -p $(TOP)/NEWS $(DESTDIR)/
cp -p $(TOP)/BUGS $(DESTDIR)/
cp -p $(TOP)/RELEASE_NOTES $(DESTDIR)/
cp -p $(TOP)/win/README-Windows.txt $(DESTDIR)/
cp -p $(TOP)/win/README-Windows-ja.txt $(DESTDIR)/
# -cp -p $(TOP)/win/README-testing.txt $(DESTDIR)/
# -cp -p $(TOP)/win/README-testing-ja.txt $(DESTDIR)/
-unix2dos $(DESTDIR)/*.txt $(DESTDIR)/README
-unix2dos $(DESTDIR)/Copyright $(DESTDIR)/NEWS $(DESTDIR)/BUGS $(DESTDIR)/RELEASE_NOTES
# demo and contrib (exclude demo/plugin and demo/html)
-mkdir -p $(DESTDIR)/demo
-cp -p $(M)* $(DESTDIR)/demo/
-mkdir -p $(DESTDIR)/demo/games
-cp -p $(M)/games/* $(DESTDIR)/demo/games/
# docs
mkdir -p $(DESTDIR)/docs
-cp -p gnuplot.pdf $(DESTDIR)/docs/
cp -p FAQ.pdf $(DESTDIR)/docs/FAQ.pdf
mkdir -p $(DESTDIR)/docs/psdoc
cp -p $(D)psdoc/ps_file.doc $(DESTDIR)/docs/psdoc/ps_file_doc.txt
cp -p $(D)psdoc/ps_guide.ps $(DESTDIR)/docs/psdoc/
-cp -p ps_guide.pdf $(DESTDIR)/docs/psdoc/
-cp -p ps_symbols.ps $(DESTDIR)/docs/psdoc/
-cp -p ps_symbols.pdf $(DESTDIR)/docs/psdoc/
-cp -p ps_fontfile_doc.pdf $(DESTDIR)/docs/psdoc/
# runtime libraries, configuration files etc.
ifdef EXTRADIST
cp -pR $(EXTRADIST)/* $(DESTDIR)/
endif
# required DLLs
ifdef DLLS
ifdef MINGW64
ifndef M32
ifdef QT
ldd gnuplot.exe gnuplot_qt.exe | cut -d " " -f 3 | grep "^/mingw64/bin" | sort | uniq | xargs -t -i cp {} $(DESTDIR)/bin
-mkdir $(DESTDIR)/bin/platforms
cp /mingw64/share/qt5/plugins/platforms/qminimal.dll $(DESTDIR)/bin/platforms
cp /mingw64/share/qt5/plugins/platforms/qwindows.dll $(DESTDIR)/bin/platforms
else
ldd gnuplot.exe | cut -d " " -f 3 | grep "^/mingw64/bin" | sort | uniq | xargs -t -i cp {} $(DESTDIR)/bin
endif # QT
else # !M32
ifdef QT
ldd gnuplot.exe gnuplot_qt.exe | cut -d " " -f 3 | grep "^/mingw32/bin" | sort | uniq | xargs -t -i cp {} $(DESTDIR)/bin
-mkdir $(DESTDIR)/bin/platforms
cp /mingw32/share/qt5/plugins/platforms/qminimal.dll $(DESTDIR)/bin/platforms
cp /mingw32/share/qt5/plugins/platforms/qwindows.dll $(DESTDIR)/bin/platforms
else
ldd gnuplot.exe | cut -d " " -f 3 | grep "^/mingw32/bin" | sort | uniq | xargs -t -i cp {} $(DESTDIR)/bin
endif # QT
endif # M32
endif # MINGW64
endif # DLLS
installer:
$(MAKE) DESTDIR=./dist install
cp -p $(W)/grpicon.ico ./dist/bin/
cp -p $(TOP)/win/*.iss ./dist
sed -e '/^#define MyAppVersionShort/ s/"[^"]*"/"@VERSHORT@"/' \
-e '/^#define MyAppVersion/ s/"[^"]*"/"@VER@"/' \
-e '/^#define MyAppNumVersion/ s/"[^"]*"/"@VERLONG@"/' \
-e '/^#define MyInstallerName/ s/"[^"]*"/"@INSTALLER@"/' \
-e "s/@VERSHORT@/$(MAINVERSION)/" \
-e "s/@VER@/$(FULLVERSION)/" \
-e "s/@VERLONG@/$(LONGVERSION)/" \
-e "s/\.alpha/\.0/" \
$(TOP)/win/gnuplot.iss > ./dist/gnuplot.iss
ifndef M32
sed -i \
-e "s/@INSTALLER@/gp$(SHORTVERSION)-win64-setup/" \
-e 's/^\(ArchitecturesAllowed\)=/\1=x64/g' \
-e 's/^\(ArchitecturesInstallIn64BitMode\)=/\1=x64/g' \
./dist/gnuplot.iss
else
sed -i \
-e "s/@INSTALLER@/gp$(SHORTVERSION)-win32-setup/" \
./dist/gnuplot.iss
endif
(cd ./dist; $(ISCC) gnuplot.iss)
ifndef M32
ifdef RELEASE
mv ./dist/gp*-setup.exe gp$(SHORTVERSION)-win64-mingw.exe
else
mv ./dist/gp*-setup.exe gp$(SHORTVERSION)-`date +%Y%m%d`-win64-mingw.exe
endif
else
ifdef RELEASE
mv ./dist/gp*-setup.exe gp$(SHORTVERSION)-win32-mingw.exe
else
mv ./dist/gp*-setup.exe gp$(SHORTVERSION)-`date +%Y%m%d`-win32-mingw.exe
endif
endif
zip:
$(MAKE) DESTDIR=./gnuplot install
ifndef M32
ifdef RELEASE
zip -mro9 gp$(SHORTVERSION)-win64-mingw.zip gnuplot
else
zip -mro9 gp$(SHORTVERSION)-`date +%Y%m%d`-win64-mingw.zip gnuplot
endif
else
ifdef RELEASE
zip -mro9 gp$(SHORTVERSION)-win32-mingw.zip gnuplot
else
zip -mro9 gp$(SHORTVERSION)-`date +%Y%m%d`-win32-mingw.zip gnuplot
endif
endif
7z:
$(MAKE) DESTDIR=./gnuplot install
ifndef M32
ifdef RELEASE
7za u -mx9 gp$(SHORTVERSION)-win64-mingw.7z gnuplot
else
7za u -mx9 gp$(SHORTVERSION)-`date +%Y%m%d`-win64-mingw.7z gnuplot
endif
else
ifdef RELEASE
7za u -mx9 gp$(SHORTVERSION)-win32-mingw.7z gnuplot
else
7za u -mx9 gp$(SHORTVERSION)-`date +%Y%m%d`-win32-mingw.7z gnuplot
endif
endif
# rebuild makefile.all
maint:
-$(RM) $(S)/makefile.all $(S)/makefile.awc
$(MAKE) -C $(S) srcdir=. top_srcdir=.. -f Makefile.maint makefile.all makefile.awc
|