From: <ai...@us...> - 2009-05-02 05:49:30
|
Revision: 9878 http://plplot.svn.sourceforge.net/plplot/?rev=9878&view=rev Author: airwin Date: 2009-05-02 05:49:28 +0000 (Sat, 02 May 2009) Log Message: ----------- Configure standard pkg-config build of D examples in install tree. Modified Paths: -------------- trunk/examples/d/Makefile.examples.in Modified: trunk/examples/d/Makefile.examples.in =================================================================== --- trunk/examples/d/Makefile.examples.in 2009-05-02 03:23:13 UTC (rev 9877) +++ trunk/examples/d/Makefile.examples.in 2009-05-02 05:49:28 UTC (rev 9878) @@ -21,9 +21,11 @@ DC = @DC@ EXEEXT = @EXEEXT@ -D_INSTDIR = @D_INSTDIR@ -INSTDIR = @INSTDIR@ +@pkg_config_true@LIB_TAG = @LIB_TAG@ +@pkg_config_true@PKG_CONFIG_ENV = @PKG_CONFIG_ENV@ +@pkg_config_true@RPATHCMD = @RPATHCMD@ + EXECUTABLES_list = \ x03d$(EXEEXT) \ x04d$(EXEEXT) \ @@ -32,8 +34,9 @@ x07d$(EXEEXT) \ x08d$(EXEEXT) \ x10d$(EXEEXT) \ + x11d$(EXEEXT) \ x12d$(EXEEXT) \ - x13d$(EXEEXT) \ + x13d$(EXEEXT) all: $(EXECUTABLES_list) @@ -41,6 +44,6 @@ rm -f $(EXECUTABLES_list) .d$(EXEEXT): -$(DC) $< -o $@ -I$(D_INSTDIR) $(INSTDIR)/libplplotd.so +@pkg_config_true@ $(DC) $< -o $@ $(RPATHCMD) `$(PKG_CONFIG_ENV) pkg-config --cflags --libs plplot$(LIB_TAG)` .SUFFIXES: .d $(EXEEXT) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |