X-Git-Url: https://git.decadent.org.uk/gitweb/?p=videolink.git;a=blobdiff_plain;f=Makefile;h=e20d8c400302600f3b642a75b025b4d294b2bd9d;hp=6a5ddc88a200a44307e867d8d912495a0bd22376;hb=43910c1f46330a1e014bb7b9a76b5795d9f6b900;hpb=410c2b9017bc26a7e79269c1f7fc606ad89249bb diff --git a/Makefile b/Makefile index 6a5ddc8..e20d8c4 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,34 @@ prefix := /usr/local -moz_include_dir := \ - $(shell pkg-config --variable=prefix mozilla-gtkmozembed)/include/mozilla -moz_lib_dir := \ - $(shell pkg-config --variable=prefix mozilla-gtkmozembed)/lib/mozilla +bindir := $(prefix)/bin +sharedir := $(prefix)/share +docdir := $(sharedir)/doc +mandir := $(sharedir)/man + +# Prefer XULRunner to the old Mozilla +ifeq ($(shell pkg-config --exists xulrunner-gtkmozembed && echo yes),yes) + mozilla := xulrunner +else + mozilla := mozilla +endif + +moz_prefix := $(shell pkg-config --variable=prefix $(mozilla)-gtkmozembed) +moz_include_dir := $(moz_prefix)/include/$(mozilla) +moz_lib_dir := $(moz_prefix)/lib/$(mozilla) + +moz_version := \ + $(shell sed 's/\#define MOZILLA_VERSION "\(.*\)"/\1/; t; d' \ + < $(moz_include_dir)/mozilla-config.h) +moz_version_major := $(word 1,$(subst ., ,$(moz_version))) +moz_version_minor := $(word 2,$(subst ., ,$(moz_version))) +moz_version_patchlevel := $(word 3,$(subst ., ,$(moz_version))) -CFLAGS := -Wall +CFLAGS := -ansi -Wall -Wunused -Wno-unused-parameter CPPFLAGS := -D_REENTRANT -CXXFLAGS := -Wall -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 $(mozilla)-gtkmozembed) \ + -Wl,-rpath -Wl,$(moz_lib_dir) -lexpat ifdef NDEBUG CPPFLAGS += -DNDEBUG @@ -20,55 +39,80 @@ else endif cxxsources := \ - auto_proc.cpp browserwidget.cpp childiterator.cpp framebuffer.cpp \ - linkiterator.cpp pixbufs.cpp stylesheets.cpp webdvd.cpp xpcom_support.cpp + auto_proc.cpp browser_widget.cpp child_iterator.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) +videolink : $(cxxsources:%.cpp=.objs/%.o) $(csources:%.c=.objs/%.o) $(CXX) $(LDFLAGS) -o $@ $^ clean : - rm -f webdvd *.d *.o *~ \#* *.orig *.rej + 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 + mkdir -p -m 755 $(DESTDIR)$(bindir) + install -m 755 -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 -browserwidget.% : CPPFLAGS += -DMOZ_LIB_DIR='"$(moz_lib_dir)"' +.objs/browser_widget.% : CPPFLAGS += -DMOZ_LIB_DIR='"$(moz_lib_dir)"' -webdvd.% \ - : CPPFLAGS += -DWEBDVD_LIB_DIR='"$(prefix)/lib/webdvd"' +.objs/videolink.% \ + : CPPFLAGS += -DVIDEOLINK_SHARE_DIR='"$(sharedir)/videolink"' -browserwidget.% pixbufs.% webdvd.% \ - : CPPFLAGS += $(shell pkg-config --cflags gtkmm-2.0) +.objs/browser_widget.% .objs/generate_dvd.% .objs/pixbufs.% \ +.objs/temp_file.% .objs/vob_list.% .objs/videolink.% .objs/warp_pointer.% \ + : CPPFLAGS += $(shell pkg-config --cflags gtkmm-2.4) -browserwidget.% childiterator.o linkiterator.% stylesheets.% webdvd.% \ -xpcom_support.% \ - : CPPFLAGS += $(shell pkg-config --cflags mozilla-gtkmozembed) +.objs/browser_widget.% .objs/child_iterator.% .objs/link_iterator.% \ +.objs/null_prompt_service.% .objs/style_sheets.% .objs/videolink.% \ +.objs/xpcom_support.% \ + : CPPFLAGS += $(shell pkg-config --cflags $(mozilla)-gtkmozembed) +# Non-virtual destructors are fine in XPCOM interface classes since +# instances are only ever called by the Release function which is virtual. +.objs/browser_widget.% .objs/child_iterator.% .objs/link_iterator.% \ +.objs/null_prompt_service.% .objs/style_sheets.% .objs/videolink.% \ +.objs/xpcom_support.% \ + : CXXFLAGS += -Wno-non-virtual-dtor # These dig a bit deeper into Mozilla -linkiterator.% stylesheets.% webdvd.% \ - : CPPFLAGS += $(addprefix -I$(moz_include_dir)/, \ - content docshell dom gfx layout necko webshell widget) +.objs/link_iterator.% .objs/null_prompt_service.% .objs/style_sheets.% \ +.objs/videolink.% \ + : CPPFLAGS += $(addprefix -I$(moz_include_dir)/, \ + content docshell dom gfx layout locale necko uconv \ + webshell widget) \ + -DMOZILLA_INTERNAL_API \ + -DMOZ_VERSION_MAJOR=$(moz_version_major) \ + -DMOZ_VERSION_MINOR=$(moz_version_minor) \ + -DMOZ_VERSION_PATCHLEVEL=$(moz_version_patchlevel) -%.d : %.cpp - $(CXX) $(CXXFLAGS) $(CPPFLAGS) -MM -MF $@ $< +.objs/%.d : .objs/.created + touch $@ -%.d : %.c - $(CC) $(CFLAGS) $(CPPFLAGS) -MM -MF $@ $< +.objs/%.o : %.cpp .objs/.created + $(CXX) $(CXXFLAGS) $(CPPFLAGS) -o $@ -MD -MF .objs/$*.d -c $< + +.objs/%.o : %.c .objs/.created + $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -MD -MF .objs/$*.d -c $< + +%/.created : + mkdir -p $* + touch $@ ifneq ($(MAKECMDGOALS),clean) - include $(cxxsources:.cpp=.d) $(csources:.c=.d) + include $(cxxsources:%.cpp=.objs/%.d) $(csources:%.c=.objs/%.d) endif -# Temporary rule for testing output files. - -%.vob : %_back.png %.spumux %_links.png - pngtopnm $*_back.png \ - | ppmtoy4m -v0 -n 1 -F 25:1 -A 59:54 -I p -S 420_mpeg2 \ - | mpeg2enc -v0 -f 8 -a 2 -o /dev/stdout \ - | mplex -v0 -f 8 -o /dev/stdout /dev/stdin \ - | spumux -v0 -m dvd $*.spumux > $@ +.PRECIOUS : %/.created