/hg/icedtea: Proper dependency checking for files involved in th...
doko at icedtea.classpath.org
doko at icedtea.classpath.org
Fri Jan 15 06:53:24 PST 2010
changeset 663183355f4c in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=663183355f4c
author: doko at ubuntu.com
date: Fri Jan 15 15:53:39 2010 +0100
Proper dependency checking for files involved in the build of the
NPPlugin
2010-01-14 Matthias Klose <doko at ubuntu.com>
* Makefile.am (stamps/icedtea-npplugin): New target, add
file dependencies for building the IcedTeaNPPlugin.so.
diffstat:
2 files changed, 11 insertions(+), 3 deletions(-)
ChangeLog | 5 +++++
Makefile.am | 9 ++++++---
diffs (52 lines):
diff -r 87d7b8575473 -r 663183355f4c ChangeLog
--- a/ChangeLog Fri Jan 15 15:41:48 2010 +0100
+++ b/ChangeLog Fri Jan 15 15:53:39 2010 +0100
@@ -1,3 +1,8 @@ 2010-01-15 Xerxes RÃ¥nby <xerxes at zafen
+2010-01-15 Matthias Klose <doko at ubuntu.com>
+
+ * Makefile.am (stamps/icedtea-npplugin): New target, add file
+ dependencies for building the IcedTeaNPPlugin.so.
+
2010-01-15 Xerxes RÃ¥nby <xerxes at zafena.se>
PR icedtea/428:
diff -r 87d7b8575473 -r 663183355f4c Makefile.am
--- a/Makefile.am Fri Jan 15 15:41:48 2010 +0100
+++ b/Makefile.am Fri Jan 15 15:53:39 2010 +0100
@@ -168,7 +168,7 @@ endif
if ENABLE_NPPLUGIN
ICEDTEAPLUGIN_CLEAN = clean-IcedTeaNPPlugin
-ICEDTEAPLUGIN_TARGET = IcedTeaNPPlugin.so
+ICEDTEAPLUGIN_TARGET = stamps/icedtea-npplugin
PLUGIN_PATCH = patches/icedtea-liveconnect.patch
LIVECONNECT_DIR = sun/applet netscape
PLUGIN_DIR=$(abs_top_srcdir)/plugin/icedteanp
@@ -1963,7 +1963,7 @@ NPPLUGIN_OBJECTS=IcedTeaNPPlugin.o IcedT
IcedTeaJavaRequestProcessor.o IcedTeaPluginRequestProcessor.o \
IcedTeaPluginUtils.o
-IcedTeaNPPlugin_objects:
+$(addprefix $(NPPLUGIN_DIR)/,$(NPPLUGIN_OBJECTS)): $(addprefix $(NPPLUGIN_DIR)/,$(NPPLUGIN_SRC))
cd $(PLUGIN_DIR); \
if [ -e $(abs_top_srcdir)/.hg ] && which $(HG) >/dev/null; then \
revision="-r`(cd $(abs_top_srcdir); $(HG) tip --template '{rev}')`" ; \
@@ -1980,7 +1980,7 @@ IcedTeaNPPlugin_objects:
-fPIC -c $(NPPLUGIN_SRC); \
cd ../
-IcedTeaNPPlugin.so: IcedTeaNPPlugin_objects
+$(NPPLUGIN_DIR)/IcedTeaNPPlugin.so: $(addprefix $(NPPLUGIN_DIR)/,$(NPPLUGIN_OBJECTS))
cd $(PLUGIN_DIR); \
$(CXX) $(CXXFLAGS) \
$(NPPLUGIN_OBJECTS) \
@@ -1989,6 +1989,9 @@ IcedTeaNPPlugin.so: IcedTeaNPPlugin_obje
$(MOZILLA_LIBS)\
-shared -o $@ \
cd ../
+
+stamps/icedtea-npplugin: $(NPPLUGIN_DIR)/IcedTeaNPPlugin.so
+ touch stamps/icedtea-npplugin
clean-IcedTeaNPPlugin:
cd $(PLUGIN_DIR); \
More information about the distro-pkg-dev
mailing list