]> git.decadent.org.uk Git - videolink.git/blobdiff - Makefile
Release versions 1.2.11 and 1.2.11-1
[videolink.git] / Makefile
index caffd0fc5c9a0151a962a09b6ca922b4138d48a1..380c7a04a59424e293c7394aac6fa4f8bb7a0869 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,26 +1,51 @@
 prefix := /usr/local
 
-webdvd_lib_dir := $(prefix)/lib/webdvd
+bindir := $(prefix)/bin
+sharedir := $(prefix)/share
+docdir := $(sharedir)/doc
+mandir := $(sharedir)/man
+
+ifeq ($(shell pkg-config --atleast-version 1.9 mozilla-gtkmozembed-embedding && echo yes),yes)
+    moz_name := xulrunner-1.9
+    moz_pc := mozilla-gtkmozembed-embedding
+    moz_cppflags_extra := $(shell pkg-config --cflags xulrunner-nspr) -DXPCOM_GLUE_USE_NSPR
+    moz_unstable_cppflags_extra :=
+    moz_ldflags_extra := $(shell pkg-config --libs xulrunner-nspr)
+    # libxpcomglue needs libdl, but mozilla-gtkmozembed-embedding.pc
+    # doesn't mention it.
+    moz_ldflags_extra += -ldl
+else
+    ifeq ($(shell pkg-config --exists xulrunner-gtkmozembed && echo yes),yes)
+    moz_name := xulrunner
+    moz_pc := xulrunner-gtkmozembed
+    else
+    moz_name := mozilla
+    moz_pc := mozilla-gtkmozembed
+    endif
+    moz_unstable_cppflags_extra = \
+       $(addprefix -I$(moz_include_dir)/, \
+          content docshell dom gfx imglib2 layout locale necko uconv webshell widget) \
+       -DMOZILLA_INTERNAL_API
+    moz_ldflags_extra = -Wl,-rpath,$(moz_lib_dir)
+endif
 
-moz_include_dir := \
-    $(shell pkg-config --variable=prefix mozilla-gtkmozembed)/include/mozilla
-moz_lib_dir := \
-    $(shell pkg-config --variable=prefix mozilla-gtkmozembed)/lib/mozilla
+moz_prefix := $(shell pkg-config --variable=prefix $(moz_pc))
+moz_include_dir := $(shell pkg-config --variable=includedir $(moz_pc))
+moz_lib_dir := $(moz_prefix)/lib/$(moz_name)
 
-moz_version := \
-    $(shell sed 's/\#define MOZILLA_VERSION "\(.*\)"/\1/; t; d' \
-            < $(moz_include_dir)/mozilla-config.h)
+moz_version := $(shell pkg-config --modversion $(moz_pc))
+# HACK: Replace 'b' for beta with micro=-1
+moz_version := $(subst b,.-1.,$(moz_version))
 moz_version_major := $(word 1,$(subst ., ,$(moz_version)))
 moz_version_minor := $(word 2,$(subst ., ,$(moz_version)))
-moz_version_patchlevel := $(word 3,$(subst ., ,$(moz_version)))
+moz_version_micro := $(word 3,$(subst ., ,$(moz_version)))
 
-CFLAGS := -Wall
+CFLAGS := -ansi -Wall -Wunused -Wno-unused-parameter
 CPPFLAGS := -D_REENTRANT
-# Non-virtual destructors are fine in XPCOM interface classes since
-# instances are only ever called by the Release function which is virtual.
-CXXFLAGS := -Wall -Wno-non-virtual-dtor
-LDFLAGS := -lpthread $(shell pkg-config --libs gtkmm-2.0 mozilla-gtkmozembed) \
-           -Wl,-rpath -Wl,$(moz_lib_dir)
+CXXFLAGS := -ansi -Wall -Wunused
+LDFLAGS := -lpthread                                           \
+           $(shell pkg-config --libs gtkmm-2.4 $(moz_pc))      \
+           $(moz_ldflags_extra) -lexpat -lX11
 
 ifdef NDEBUG
     CPPFLAGS += -DNDEBUG
@@ -32,52 +57,78 @@ endif
 
 cxxsources := \
     auto_proc.cpp browser_widget.cpp child_iterator.cpp                    \
-    link_iterator.cpp pixbufs.cpp style_sheets.cpp temp_file.cpp video.cpp \
-    webdvd.cpp x_frame_buffer.cpp xpcom_support.cpp
+    event_state_manager.cpp generate_dvd.cpp link_iterator.cpp             \
+    null_prompt_service.cpp pixbufs.cpp style_sheets.cpp temp_file.cpp     \
+    video.cpp vob_list.cpp videolink.cpp warp_pointer.cpp                  \
+    x_frame_buffer.cpp xml_utils.cpp xpcom_support.cpp
 csources := jquant2.c
 
-webdvd : $(cxxsources:.cpp=.o) $(csources:.c=.o)
-       $(CXX) $(LDFLAGS) -o $@ $^
+sources_using_gtkmm :=                                                     \
+    browser_widget.cpp generate_dvd.cpp pixbufs.cpp temp_file.cpp          \
+    vob_list.cpp videolink.cpp warp_pointer.cpp
+sources_using_moz :=                                                       \
+    browser_widget.cpp child_iterator.cpp event_state_manager.cpp          \
+    link_iterator.cpp null_prompt_service.cpp style_sheets.cpp             \
+    videolink.cpp xpcom_support.cpp
+sources_using_moz_unstable := \
+    browser_widget.cpp event_state_manager.cpp link_iterator.cpp           \
+    null_prompt_service.cpp style_sheets.cpp videolink.cpp
 
-clean :
-       rm -f webdvd *.d *.o *~ .\#* *.orig *.rej svn-commit*.tmp
+videolink : $(cxxsources:%.cpp=.objs/%.o) $(csources:%.c=.objs/%.o)
+       $(CXX) $^ $(LDFLAGS) -o $@
 
-distclean : clean
-       rm -rf .svn
+clean :
+       rm -rf .objs
+       rm -f videolink *~ .\#* *.orig *.rej svn-commit*.tmp
 
 install :
-       mkdir -p -m 755 $(prefix)/bin $(prefix)/lib/webdvd
-       install -m 755 -s webdvd $(prefix)/bin
-       install -m 644 webdvd.css $(prefix)/lib/webdvd
-
-.PHONY : clean distclean install
-
-browser_widget.% : CPPFLAGS += -DMOZ_LIB_DIR='"$(moz_lib_dir)"'
-
-webdvd.% \
-    : CPPFLAGS += -DWEBDVD_LIB_DIR='"$(webdvd_lib_dir)"'             \
-                  -DMOZ_VERSION_MAJOR=$(moz_version_major)           \
-                  -DMOZ_VERSION_MINOR=$(moz_version_minor)           \
-                  -DMOZ_VERSION_PATCHLEVEL=$(moz_version_patchlevel)
-
-browser_widget.% pixbufs.% temp_file.% webdvd.% \
-    : CPPFLAGS += $(shell pkg-config --cflags gtkmm-2.0)
+       mkdir -p -m 755 $(DESTDIR)$(bindir)
+       install -m 755 $(if $(NDEBUG),-s,) videolink $(DESTDIR)$(bindir)
+       mkdir -p -m 755 $(DESTDIR)$(docdir)/videolink
+       gzip -c9 README >$(DESTDIR)$(docdir)/videolink/README.gz
+       gzip -c9 ChangeLog >$(DESTDIR)$(docdir)/videolink/ChangeLog.gz
+       chmod 644 $(DESTDIR)$(docdir)/videolink/*.gz
+       mkdir -p -m 755 $(DESTDIR)$(mandir)/man1
+       gzip -c9 videolink.1 >$(DESTDIR)$(mandir)/man1/videolink.1.gz
+       chmod 644 $(DESTDIR)$(mandir)/man1/videolink.1.gz
+       mkdir -p -m 755 $(DESTDIR)$(sharedir)/videolink
+       install -m 644 *.css $(DESTDIR)$(sharedir)/videolink
+
+.PHONY : clean install
+
+.objs/browser_widget.% : CPPFLAGS += -DMOZ_LIB_DIR='"$(moz_lib_dir)"'
+
+.objs/videolink.% \
+    : CPPFLAGS += -DVIDEOLINK_SHARE_DIR='"$(sharedir)/videolink"'
+
+$(sources_using_gtkmm:%.cpp=.objs/%.o) \
+    : CPPFLAGS += $(shell pkg-config --cflags gtkmm-2.4)
+
+$(sources_using_moz:%.cpp=.objs/%.o) \
+    : CPPFLAGS += $(filter-out -fshort-wchar, \
+                   $(shell pkg-config --cflags $(moz_pc)) $(moz_cppflags_extra))
+# Non-virtual destructors are fine in XPCOM interface classes since
+# instances are only ever called by the Release function which is virtual.
+$(sources_using_moz:%.cpp=.objs/%.o) : CXXFLAGS += -Wno-non-virtual-dtor
 
-browser_widget.% child_iterator.o link_iterator.% style_sheets.% webdvd.% \
-xpcom_support.%                                                           \
-    : CPPFLAGS += $(shell pkg-config --cflags mozilla-gtkmozembed)
+$(sources_using_moz_unstable:%.cpp=.objs/%.o)                          \
+    : CPPFLAGS += $(moz_unstable_cppflags_extra)                       \
+                  -DMOZ_VERSION_MAJOR=$(moz_version_major)             \
+                  -DMOZ_VERSION_MINOR=$(moz_version_minor)             \
+                  -DMOZ_VERSION_MICRO=$(moz_version_micro)
 
-# These dig a bit deeper into Mozilla
-link_iterator.% style_sheets.% webdvd.%                                    \
-    : CPPFLAGS += $(addprefix -I$(moz_include_dir)/,                       \
-                    content docshell dom gfx layout necko webshell widget)
+.objs/%.o : %.cpp .objs/.created
+       $(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $@ -MD -MF .objs/$*.d -c $<
 
-%.d : %.cpp
-       $(CXX) $(CXXFLAGS) $(CPPFLAGS) -MM -MF $@ $<
+.objs/%.o : %.c .objs/.created
+       $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -MD -MF .objs/$*.d -c $<
 
-%.d : %.c
-       $(CC) $(CFLAGS) $(CPPFLAGS) -MM -MF $@ $<
+%/.created :
+       mkdir -p $*
+       touch $@
 
 ifneq ($(MAKECMDGOALS),clean)
-    include $(cxxsources:.cpp=.d) $(csources:.c=.d)
+    -include $(cxxsources:%.cpp=.objs/%.d) $(csources:%.c=.objs/%.d)
 endif
+
+.PRECIOUS : %/.created