[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 05:50:31 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 61542b0c11332f0155b1e6ddaa00f69c567da4a9
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Oct 16 22:14:05 2001 +0000

    More changes for the new build system
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@335 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/lib/.cvsignore b/WebCore/lib/.cvsignore
new file mode 100644
index 0000000..cc2e42d
--- /dev/null
+++ b/WebCore/lib/.cvsignore
@@ -0,0 +1,3 @@
+Makefile
+kjs
+*.dylib
diff --git a/WebCore/lib/Makefile.in b/WebCore/lib/Makefile.in
new file mode 100644
index 0000000..223f165
--- /dev/null
+++ b/WebCore/lib/Makefile.in
@@ -0,0 +1,66 @@
+# Generated automatically from Makefile.in by configure.
+# Generated automatically from Makefile.in by configure.
+#======================================================================
+#
+# Makefile
+#
+# $RCSfile$
+# $Revision$
+# $Author$
+# $Date$
+#
+#======================================================================
+# set top source dir relative to this directory
+# include make vars boilerplate
+#
+
+TOPSRCDIR = ..
+include $(TOPSRCDIR)/Makefile.vars
+
+#----------------------------------------------------------------------
+# Set variables for this directory
+
+OBJECTS = $(wildcard *.o)
+
+LIBRARY_BASE_NAME = libwebcore
+LIBRARY_MAJOR_VERSION = 1
+LIBRARY_MINOR_VERSION = 0
+LIBRARY_MICRO_VERSION = 0
+LIBRARY_COMPAT_VERSION = 1.0
+LIBRARY_VERSION = $(LIBRARY_MAJOR_VERSION).$(LIBRARY_MINOR_VERSION).$(LIBRARY_MICRO_VERSION)
+LIBRARY = $(LIBRARY_BASE_NAME).$(LIBRARY_VERSION).dylib
+LIBRARY_DYNAMIC_LINK = $(LIBRARY_BASE_NAME).$(LIBRARY_MAJOR_VERSION).dylib
+LIBRARY_STATIC_LINK = $(LIBRARY_BASE_NAME).dylib
+
+CLEAN_FILES = $(LIBRARY_BASE_NAME).* \
+        *.dylib \
+        *.cpp \
+        *.o \
+        *.a \
+        kjs \
+	$(NULL)
+
+#----------------------------------------------------------------------
+# Set targets for this directory
+
+all: $(LIBRARY)
+
+$(LIBRARY): $(OBJECTS)
+	rm -f $(LIBRARY_BASE_NAME).*.dylib; \
+	$(CC) -flat_namespace -undefined suppress -compatibility_version $(LIBRARY_COMPAT_VERSION) -current_version $(LIBRARY_VERSION) $(DYLIBFLAGS) -o $(LIBRARY) $(OBJECTS) -lstdc++ -ljpeg
+	ln -fs $(LIBRARY) $(LIBRARY_DYNAMIC_LINK)
+	ln -fs $(LIBRARY) $(LIBRARY_STATIC_LINK)
+	if [ -d "/symroots" ]; then \
+		ln -fs `pwd`/$(LIBRARY) /symroots/$(LIBRARY); \
+		ln -fs `pwd`/$(LIBRARY) /symroots/$(LIBRARY_DYNAMIC_LINK); \
+		ln -fs `pwd`/$(LIBRARY) /symroots/$(LIBRARY_STATIC_LINK); \
+	fi
+
+#----------------------------------------------------------------------
+# include make rules boilerplate
+
+include $(TOPSRCDIR)/Makefile.rules
+
+#======================================================================
+# end
+#======================================================================

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list