1 | ACLOCAL_AMFLAGS = -I m4 |
---|
2 | |
---|
3 | GIT_DESCRIPTION := $(if $(wildcard .git),$(shell git describe --match='barnowl-*' HEAD 2>/dev/null)) |
---|
4 | GIT_FLAGS := $(if $(GIT_DESCRIPTION),-DGIT_VERSION=$(GIT_DESCRIPTION:barnowl-%=%)) |
---|
5 | |
---|
6 | bin_PROGRAMS = barnowl.bin |
---|
7 | if ENABLE_ZCRYPT |
---|
8 | bin_PROGRAMS += zcrypt |
---|
9 | endif |
---|
10 | |
---|
11 | zcrypt_SOURCES = zcrypt.c filterproc.c |
---|
12 | |
---|
13 | check_PROGRAMS = tester.bin |
---|
14 | dist_check_DATA = t |
---|
15 | dist_check_SCRIPTS = runtests.sh |
---|
16 | |
---|
17 | bin_SCRIPTS = barnowl |
---|
18 | check_SCRIPTS = tester |
---|
19 | |
---|
20 | barnowl tester: %: barnowl-wrapper.in %.bin |
---|
21 | cp $< $@ |
---|
22 | chmod +x $@ |
---|
23 | |
---|
24 | barnowl_bin_SOURCES = $(BASE_SRCS) \ |
---|
25 | owl.h owl_perl.h config.h \ |
---|
26 | owl.c \ |
---|
27 | $(GEN_C) $(GEN_H) |
---|
28 | |
---|
29 | dist_man_MANS = doc/barnowl.1 |
---|
30 | dist_doc_DATA = doc/intro.txt doc/advanced.txt |
---|
31 | |
---|
32 | barnowl_bin_LDADD = compat/libcompat.a libfaim/libfaim.a |
---|
33 | |
---|
34 | tester_bin_SOURCES = $(BASE_SRCS) \ |
---|
35 | owl.h owl_perl.h config.h \ |
---|
36 | $(GEN_C) $(GEN_H) \ |
---|
37 | tester.c |
---|
38 | |
---|
39 | tester_bin_LDADD = compat/libcompat.a libfaim/libfaim.a |
---|
40 | |
---|
41 | TESTS=runtests.sh |
---|
42 | |
---|
43 | AM_CPPFLAGS = \ |
---|
44 | -I$(top_srcdir)/libfaim/ \ |
---|
45 | -DDATADIR='"$(pkgdatadir)"' \ |
---|
46 | -DBINDIR='"$(bindir)"' \ |
---|
47 | $(GIT_FLAGS) |
---|
48 | |
---|
49 | CODELIST_SRCS=message.c mainwin.c popwin.c zephyr.c messagelist.c \ |
---|
50 | commands.c global.c text.c fmtext.c editwin.c \ |
---|
51 | util.c logging.c \ |
---|
52 | perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \ |
---|
53 | regex.c history.c view.c dict.c variable.c filterelement.c pair.c \ |
---|
54 | keypress.c keymap.c keybinding.c cmd.c context.c \ |
---|
55 | aim.c buddy.c buddylist.c style.c errqueue.c \ |
---|
56 | zbuddylist.c popexec.c select.c wcwidth.c \ |
---|
57 | mainpanel.c msgwin.c sepbar.c editcontext.c signal.c closures.c |
---|
58 | |
---|
59 | NORMAL_SRCS = filterproc.c filterproc.h window.c window.h windowcb.c |
---|
60 | |
---|
61 | BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS) |
---|
62 | |
---|
63 | GEN_C = varstubs.c perlglue.c gmarshal_funcs.c |
---|
64 | GEN_H = owl_prototypes.h owl_prototypes.h.new gmarshal_funcs.h |
---|
65 | |
---|
66 | BUILT_SOURCES = $(GEN_C) $(GEN_H) |
---|
67 | |
---|
68 | # Only copy file into place if file.new is different |
---|
69 | %: %.new |
---|
70 | @diff -U0 $@ $< || { \ |
---|
71 | test -f $@ && echo '$@ changed!'; \ |
---|
72 | echo cp -f $< $@; \ |
---|
73 | cp -f $< $@; } |
---|
74 | |
---|
75 | proto: owl_prototypes.h |
---|
76 | |
---|
77 | perlglue.c: perlglue.xs typemap |
---|
78 | $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes $< > $@ |
---|
79 | |
---|
80 | varstubs.c: stubgen.pl variable.c |
---|
81 | $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@ |
---|
82 | |
---|
83 | owl_prototypes.h.new: codelist.pl varstubs.c $(CODELIST_SRCS) |
---|
84 | $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@ |
---|
85 | |
---|
86 | gmarshal_funcs.h: marshal_types |
---|
87 | glib-genmarshal --header $< > $@ |
---|
88 | gmarshal_funcs.c: marshal_types |
---|
89 | glib-genmarshal --body $< > $@ |
---|
90 | |
---|
91 | # For emacs flymake-mode |
---|
92 | check-syntax: proto |
---|
93 | $(COMPILE) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES) |
---|
94 | |
---|
95 | do_transform = $(shell echo '$(1)' | sed '$(transform)') |
---|
96 | install-exec-hook: |
---|
97 | mv -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl.bin) \ |
---|
98 | $(DESTDIR)$(bindir)/$(call do_transform,barnowl) |
---|
99 | |
---|
100 | uninstall-local: |
---|
101 | rm -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl) |
---|
102 | |
---|
103 | CLEANFILES = $(BUILT_SOURCES) $(bin_SCRIPTS) $(check_SCRIPTS) |
---|
104 | EXTRA_DIST = \ |
---|
105 | autogen.sh \ |
---|
106 | barnowl-wrapper.in \ |
---|
107 | codelist.pl \ |
---|
108 | doc \ |
---|
109 | examples \ |
---|
110 | marshal_types \ |
---|
111 | perlglue.xs \ |
---|
112 | scripts \ |
---|
113 | stubgen.pl \ |
---|
114 | typemap |
---|
115 | |
---|
116 | SUBDIRS = compat libfaim perl |
---|