source: Makefile.am @ bf21c4e

release-1.10
Last change on this file since bf21c4e was 392b5cf, checked in by Adam Glasgall <glasgall@mit.edu>, 8 years ago
add cpanfile to Makefile.am
  • Property mode set to 100644
File size: 3.6 KB
RevLine 
[eddee7e]1ACLOCAL_AMFLAGS = -I m4
[8073852]2
[ca1fb26a]3GIT_DESCRIPTION := $(if $(wildcard $(srcdir)/.git),$(shell cd $(srcdir) && git describe --match='barnowl-*' HEAD 2>/dev/null))
[866b391]4VERSION = $(if $(GIT_DESCRIPTION),$(GIT_DESCRIPTION:barnowl-%=%),$(DIST_VERSION))
5DIST_VERSION = @VERSION@
6-include $(srcdir)/DIST_VERSION.mk BUILD_VERSION.mk
[ca1fb26a]7
8FORCE:
9BUILD_VERSION.mk: $(if $(filter-out $(BUILD_VERSION),$(VERSION)),FORCE)
10        echo 'BUILD_VERSION = $(VERSION)' > $@
[866b391]11dist-hook:: $(if $(filter-out @VERSION@,$(VERSION)),dist-hook-version)
12dist-hook-version:
13        echo 'DIST_VERSION = $(VERSION)' > $(distdir)/DIST_VERSION.mk
[8df704f]14
[a223b6b]15bin_PROGRAMS = bin/barnowl
[7d03c8d]16if ENABLE_ZCRYPT
17bin_PROGRAMS += zcrypt
18endif
19
[02514d9]20zcrypt_SOURCES = zcrypt.c filterproc.c
21nodist_zcrypt_SOURCES = version.c
[7d03c8d]22
[a223b6b]23check_PROGRAMS = bin/tester
[b80bae0]24dist_check_DATA = t
25dist_check_SCRIPTS = runtests.sh
[37f27bc]26
[a223b6b]27noinst_SCRIPTS = barnowl
[574b952]28check_SCRIPTS = tester
29
[a223b6b]30barnowl tester: %: barnowl-wrapper.in bin/% Makefile
[1dba5bd]31        sed \
32            -e 's,[@]abs_srcdir[@],$(abs_srcdir),g' \
33            -e 's,[@]abs_builddir[@],$(abs_builddir),g' \
34            $< > $@
[574b952]35        chmod +x $@
36
[a223b6b]37bin_barnowl_SOURCES = $(BASE_SRCS) \
[3624a2c]38     owl.h owl_perl.h \
39     owl.c
[a223b6b]40nodist_bin_barnowl_SOURCES = $(GEN_C) $(GEN_H)
[37f27bc]41
[b80bae0]42dist_man_MANS = doc/barnowl.1
43dist_doc_DATA = doc/intro.txt doc/advanced.txt
[e2bc8ac]44
[a223b6b]45bin_barnowl_LDADD = compat/libcompat.a libfaim/libfaim.a
[37f27bc]46
[a223b6b]47bin_tester_SOURCES = $(BASE_SRCS) \
[3624a2c]48     owl.h owl_perl.h \
[0b65bd7]49     tester.c
[a223b6b]50nodist_bin_tester_SOURCES = $(GEN_C) $(GEN_H)
[0b65bd7]51
[a223b6b]52bin_tester_LDADD = compat/libcompat.a libfaim/libfaim.a
[42ad917]53
[2fa9a1a0]54TESTS=runtests.sh
55
[cb1243be]56AM_CPPFLAGS = \
[8df704f]57           -I$(top_srcdir)/libfaim/ \
[858c9c4]58           -DDATADIR='"$(pkgdatadir)"' \
[ca1fb26a]59           -DBINDIR='"$(bindir)"'
[37f27bc]60
[c266281]61CODELIST_SRCS=message.c mainwin.c popwin.c zephyr.c messagelist.c \
[353719a]62     commands.c global.c text.c fmtext.c editwin.c \
[06e04a9]63     util.c logging.c \
[37f27bc]64     perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \
65     regex.c history.c view.c dict.c variable.c filterelement.c pair.c \
[d564c3d]66     keypress.c keymap.c keybinding.c cmd.c context.c \
[37f27bc]67     aim.c buddy.c buddylist.c style.c errqueue.c \
[3f6555d]68     zbuddylist.c popexec.c select.c wcwidth.c \
[06e04a9]69     mainpanel.c msgwin.c sepbar.c editcontext.c signal.c closures.c
[37f9818]70
[b80bae0]71NORMAL_SRCS = filterproc.c filterproc.h window.c window.h windowcb.c
[37f9818]72
73BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS)
[37f27bc]74
[ca1fb26a]75GEN_C = varstubs.c perlglue.c gmarshal_funcs.c version.c version.c.new
[0f5b08e]76GEN_H = owl_prototypes.h owl_prototypes.h.new gmarshal_funcs.h
[37f27bc]77
[685cca7]78BUILT_SOURCES = $(GEN_H)
[37f27bc]79
[1ad4a4a]80# Only copy file into place if file.new is different
[ca1fb26a]81owl_prototypes.h version.c: %: %.new
[1ad4a4a]82        @diff -U0 $@ $< || { \
83         test -f $@ && echo '$@ changed!'; \
84         echo cp -f $< $@; \
85              cp -f $< $@; }
86
[37f27bc]87proto: owl_prototypes.h
88
[25d7236]89perlglue.c: perlglue.xs typemap
[eb5e8fc]90        $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes $< > $@
[37f27bc]91
[df49ff6]92varstubs.c: stubgen.pl variable.c
[76f0e19]93        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
[37f27bc]94
[37f9818]95owl_prototypes.h.new: codelist.pl varstubs.c $(CODELIST_SRCS)
[76f0e19]96        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
[37f27bc]97
[ca1fb26a]98version.c.new: Makefile BUILD_VERSION.mk
99        $(AM_V_GEN)echo 'const char *version = "$(VERSION)";' > $@
100
[353719a]101gmarshal_funcs.h: marshal_types
102        glib-genmarshal --header $< > $@
103gmarshal_funcs.c: marshal_types
104        glib-genmarshal --body $< > $@
105
[37f27bc]106# For emacs flymake-mode
107check-syntax: proto
[ce35060]108        $(COMPILE) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES)
[37f27bc]109
[ca1fb26a]110CLEANFILES = $(BUILT_SOURCES) $(GEN_C) $(noinst_SCRIPTS) $(check_SCRIPTS) BUILD_VERSION.mk
[866b391]111MAINTAINERCLEANFILES = DIST_VERSION.mk
[b80bae0]112EXTRA_DIST = \
113    autogen.sh \
[574b952]114    barnowl-wrapper.in \
[b80bae0]115    codelist.pl \
[78b9503]116    doc/code.txt \
117    doc/owl-window.txt \
118    doc/releasing-barnowl.txt \
[b80bae0]119    examples \
120    marshal_types \
121    perlglue.xs \
122    scripts \
123    stubgen.pl \
[392b5cf]124    typemap \
125    cpanfile
[0f5b08e]126
[12a6616]127SUBDIRS = compat libfaim perl
Note: See TracBrowser for help on using the repository browser.