1 | bin_PROGRAMS = barnowl.bin |
---|
2 | check_PROGRAMS = tester |
---|
3 | |
---|
4 | barnowl_bin_SOURCES = $(BASE_SRCS) \ |
---|
5 | owl.h owl_perl.h config.h \ |
---|
6 | owl.c \ |
---|
7 | libzcrypt.a \ |
---|
8 | $(GEN_C) $(GEN_H) |
---|
9 | |
---|
10 | barnowl_bin_LDADD = libfaim/libfaim.a libzcrypt.a |
---|
11 | |
---|
12 | tester_SOURCES = $(BASE_SRCS) \ |
---|
13 | owl.h owl_perl.h config.h test.h \ |
---|
14 | libzcrypt.a \ |
---|
15 | $(GEN_C) $(GEN_H) \ |
---|
16 | tester.c |
---|
17 | |
---|
18 | tester_LDADD = libfaim/libfaim.a libzcrypt.a |
---|
19 | |
---|
20 | TESTS=runtests.sh |
---|
21 | |
---|
22 | noinst_LIBRARIES = libzcrypt.a |
---|
23 | |
---|
24 | libzcrypt_a_SOURCES = zcrypt.c |
---|
25 | libzcrypt_a_CFLAGS = -w |
---|
26 | |
---|
27 | CPPFLAGS = -I$(top_srcdir)/ \ |
---|
28 | -I$(top_srcdir)/libfaim/ |
---|
29 | |
---|
30 | BASE_SRCS=list.c message.c mainwin.c popwin.c zephyr.c messagelist.c \ |
---|
31 | commands.c global.c text.c fmtext.c editwin.c util.c logging.c \ |
---|
32 | perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \ |
---|
33 | regex.c history.c view.c dict.c variable.c filterelement.c pair.c \ |
---|
34 | keypress.c keymap.c keybinding.c cmd.c context.c \ |
---|
35 | aim.c buddy.c buddylist.c style.c errqueue.c \ |
---|
36 | zbuddylist.c popexec.c obarray.c select.c wcwidth.c \ |
---|
37 | glib_compat.c |
---|
38 | |
---|
39 | GEN_C = varstubs.c perlglue.c |
---|
40 | GEN_H = owl_prototypes.h |
---|
41 | |
---|
42 | BUILT_SOURCES = $(GEN_C) $(GEN_H) |
---|
43 | |
---|
44 | # Only copy file into place if file.new is different |
---|
45 | %: %.new |
---|
46 | @diff -U0 $@ $< || { \ |
---|
47 | test -f $@ && echo '$@ changed!'; \ |
---|
48 | echo cp -f $< $@; \ |
---|
49 | cp -f $< $@; } |
---|
50 | |
---|
51 | proto: owl_prototypes.h |
---|
52 | |
---|
53 | perlglue.c: perlglue.xs |
---|
54 | perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs > perlglue.c |
---|
55 | |
---|
56 | varstubs.c: stubgen.pl variable.c |
---|
57 | perl $< $(filter-out $<,$+) > $@ |
---|
58 | |
---|
59 | owl_prototypes.h.new: codelist.pl varstubs.c $(BASE_SRCS) owl.c zcrypt.c |
---|
60 | perl $< $(filter-out $<,$+) > $@ |
---|
61 | |
---|
62 | # For emacs flymake-mode |
---|
63 | check-syntax: proto |
---|
64 | $(CC) $(CFLAGS) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES) |
---|
65 | |
---|
66 | install-data-local: |
---|
67 | $(mkinstalldirs) ${DESTDIR}${pkgdatadir}/lib |
---|
68 | (cd perl/lib && tar -cf - . ) | (cd ${DESTDIR}${pkgdatadir}/lib && tar -xf - ) |
---|
69 | |
---|
70 | do_transform = $(shell echo '$(1)' | sed '$(transform)') |
---|
71 | install-exec-hook: |
---|
72 | mv -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl.bin) \ |
---|
73 | $(DESTDIR)$(bindir)/$(call do_transform,barnowl) |
---|
74 | |
---|
75 | SUBDIRS = libfaim/ perl/modules/ |
---|