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
|
# examples/c/Makefile.examples.in for PLplot
# Copyright (C) 2002 Maurice LeBrun
# Copyright (C) 2002-2019 Alan W. Irwin
# Copyright (C) 2003-2005 Rafael Laboissiere
# Copyright (C) 2004-2012 Andrew Ross
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# PLplot is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with the file PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
SHELL = @SH_EXECUTABLE@
CC = @CC@
EXEEXT = @EXEEXT@
PKG_CONFIG_ENV = @PKG_CONFIG_ENV@
install_tree_c_RPATHCMD = @install_tree_c_RPATHCMD@
@extXdrawable_true@extXdrawable_EXECUTABLES_list = \
@extXdrawable_true@ extXdrawable_demo$(EXEEXT)
@extcairo_true@extcairo_EXECUTABLES_list = \
@extcairo_true@ ext-cairo-test$(EXEEXT)
EXECUTABLES_list = \
x00c$(EXEEXT) \
x01c$(EXEEXT) \
x02c$(EXEEXT) \
x03c$(EXEEXT) \
x04c$(EXEEXT) \
x05c$(EXEEXT) \
x06c$(EXEEXT) \
x07c$(EXEEXT) \
x08c$(EXEEXT) \
x09c$(EXEEXT) \
x10c$(EXEEXT) \
x11c$(EXEEXT) \
x12c$(EXEEXT) \
x13c$(EXEEXT) \
x14c$(EXEEXT) \
x15c$(EXEEXT) \
x16c$(EXEEXT) \
x17c$(EXEEXT) \
x18c$(EXEEXT) \
x19c$(EXEEXT) \
x20c$(EXEEXT) \
x21c$(EXEEXT) \
x22c$(EXEEXT) \
x23c$(EXEEXT) \
x24c$(EXEEXT) \
x25c$(EXEEXT) \
x26c$(EXEEXT) \
x27c$(EXEEXT) \
x28c$(EXEEXT) \
x29c$(EXEEXT) \
x30c$(EXEEXT) \
x31c$(EXEEXT) \
x32c$(EXEEXT) \
x33c$(EXEEXT) \
$(extXdrawable_EXECUTABLES_list) \
$(extcairo_EXECUTABLES_list)
all: $(EXECUTABLES_list)
clean:
rm -f $(EXECUTABLES_list)
# target_link_libraries(extXdrawable_demo ${GTK_X11_LINK_FLAGS} plplot)
# N.B. the above CMake method derives ${GTK_X11_LINK_FLAGS} from pkg-config
# results determined by CMake. Instead of transforming those back
# to pkg-config form, we instead use the the pkg-config gtk+-x11-2.0 package directly.
@extXdrawable_true@extXdrawable_demo$(EXEEXT): extXdrawable_demo.c
@extXdrawable_true@ $(CC) $< -o $@ $(install_tree_c_RPATHCMD) \
@extXdrawable_true@ $(shell $(PKG_CONFIG_ENV) pkg-config @PC_STATIC_OPTION@ --cflags --libs plplot gtk+-x11-2.0)
# target_link_libraries(ext-cairo-test ${CAIRO_LINK_FLAGS} plplot)
# N.B. the above CMake method derives ${CAIRO_LINK_FLAGS} from pkg-config
# results determined by CMake. Instead of transforming those back
# to pkg-config form, we instead use the
# the cairo pkg-config package directly.
@extcairo_true@ext-cairo-test$(EXEEXT): ext-cairo-test.c
@extcairo_true@ $(CC) $< -o $@ $(install_tree_c_RPATHCMD) \
@extcairo_true@ $(shell $(PKG_CONFIG_ENV) pkg-config @PC_STATIC_OPTION@ --cflags --libs plplot cairo)
# target_link_libraries(x${STRING_INDEX}c plplot ${MATH_LIB})
.c$(EXEEXT):
$(CC) $< -o $@ $(install_tree_c_RPATHCMD) $(shell $(PKG_CONFIG_ENV) pkg-config @PC_STATIC_OPTION@ --cflags --libs plplot) @MATH_LIB@
.SUFFIXES: .c $(EXEEXT)
|