# examples/tk/Makefile.examples.in for PLplot
###
### Process this file with configure to produce Makefile.examples
###
# Copyright (C) 2002  Alan W. Irwin
# Copyright (C) 2004  Rafael Laboissiere
# 
# This file is part of PLplot.
#
# This file 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.
#
# This file 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; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA

LIB_TAG = d
TCLTKINCCMD =  -I/usr/include/tcl8.4/tcl-private/generic -I/usr/include/tcl8.4/tk-private/generic 
INCLUDEANDLIB = \
	-I/usr/include/plplot \
	$(TCLTKINCCMD) \
	-L/usr/lib \
	-lplplottcltk$(LIB_TAG)

CC = gcc
EXEEXT = 
PKG_CONFIG_ENV =  
RPATHCMD = 

EXECUTABLES_list = \
		 xtk01$(EXEEXT) \
		 xtk02$(EXEEXT) \
		 xtk04$(EXEEXT)

all: $(EXECUTABLES_list)

clean:
	rm -f $(EXECUTABLES_list)

.c$(EXEEXT):
	$(CC) $< -o $@ $(RPATHCMD) $(TCLTKINCCMD) `$(PKG_CONFIG_ENV) pkg-config --cflags --libs plplot$(LIB_TAG)-tcl`
# 	plplot_libtool --mode=link $(CC) $< $(INCLUDEANDLIB) -o $@

.SUFFIXES: .c $(EXEEXT)
