summaryrefslogtreecommitdiffstats
path: root/rules/gnuplot.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2005-07-05 14:30:55 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2005-07-05 14:30:55 +0000
commit6bb7b3612c3b7a8a127a76084ceee4cd70df63f4 (patch)
tree202739906aeee4aabb66f4db39a708940169184e /rules/gnuplot.make
parent28abdca757608b8d27612e25c87c0cfb1f9a4048 (diff)
downloadptxdist-6bb7b3612c3b7a8a127a76084ceee4cd70df63f4.tar.gz
ptxdist-6bb7b3612c3b7a8a127a76084ceee4cd70df63f4.tar.xz
fixed: didn't compile correctly
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@2901 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/gnuplot.make')
-rw-r--r--rules/gnuplot.make8
1 files changed, 5 insertions, 3 deletions
diff --git a/rules/gnuplot.make b/rules/gnuplot.make
index 1c2fe9aea..7e0ef99f9 100644
--- a/rules/gnuplot.make
+++ b/rules/gnuplot.make
@@ -165,9 +165,12 @@ $(STATEDIR)/gnuplot.compile: $(gnuplot_compile_deps)
# This has to be built with host compiler!!
# FIXME: uggly workaround for now...
- cd $(GNUPLOT_DIR)/src && make bf_test CC=$(HOSTCC) CFLAGS='-O2' LDFLAGS=''
+ #cd $(GNUPLOT_DIR)/src && make bf_test CC=$(HOSTCC) CFLAGS='-O2' LDFLAGS=''
+ #rm -f $(GNUPLOT_DIR)/src/*.o
- cd $(GNUPLOT_DIR) && $(GNUPLOT_ENV) $(GNUPLOT_PATH) make
+ # We only make the binary, as IT tries to start target stuff on the host
+ # otherwhise
+ cd $(GNUPLOT_DIR)/src && $(GNUPLOT_ENV) $(GNUPLOT_PATH) make gnuplot
touch $@
# ----------------------------------------------------------------------------
@@ -178,7 +181,6 @@ gnuplot_install: $(STATEDIR)/gnuplot.install
$(STATEDIR)/gnuplot.install: $(STATEDIR)/gnuplot.compile
@$(call targetinfo, $@)
- cd $(GNUPLOT_DIR) && $(GNUPLOT_ENV) $(GNUPLOT_PATH) make install
touch $@
# ----------------------------------------------------------------------------