[eddee7e] | 1 | ACLOCAL_AMFLAGS = -I m4 |
---|
[8073852] | 2 | |
---|
[89982ec] | 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-%=%)) |
---|
[8df704f] | 5 | |
---|
[a223b6b] | 6 | bin_PROGRAMS = bin/barnowl |
---|
[7d03c8d] | 7 | if ENABLE_ZCRYPT |
---|
| 8 | bin_PROGRAMS += zcrypt |
---|
| 9 | endif |
---|
| 10 | |
---|
| 11 | zcrypt_SOURCES = zcrypt.c filterproc.c |
---|
| 12 | |
---|
[a223b6b] | 13 | check_PROGRAMS = bin/tester |
---|
[b80bae0] | 14 | dist_check_DATA = t |
---|
| 15 | dist_check_SCRIPTS = runtests.sh |
---|
[37f27bc] | 16 | |
---|
[a223b6b] | 17 | noinst_SCRIPTS = barnowl |
---|
[574b952] | 18 | check_SCRIPTS = tester |
---|
| 19 | |
---|
[a223b6b] | 20 | barnowl tester: %: barnowl-wrapper.in bin/% Makefile |
---|
[1dba5bd] | 21 | sed \ |
---|
| 22 | -e 's,[@]abs_srcdir[@],$(abs_srcdir),g' \ |
---|
| 23 | -e 's,[@]abs_builddir[@],$(abs_builddir),g' \ |
---|
| 24 | $< > $@ |
---|
[574b952] | 25 | chmod +x $@ |
---|
| 26 | |
---|
[a223b6b] | 27 | bin_barnowl_SOURCES = $(BASE_SRCS) \ |
---|
[3624a2c] | 28 | owl.h owl_perl.h \ |
---|
| 29 | owl.c |
---|
[a223b6b] | 30 | nodist_bin_barnowl_SOURCES = $(GEN_C) $(GEN_H) |
---|
[37f27bc] | 31 | |
---|
[b80bae0] | 32 | dist_man_MANS = doc/barnowl.1 |
---|
| 33 | dist_doc_DATA = doc/intro.txt doc/advanced.txt |
---|
[e2bc8ac] | 34 | |
---|
[a223b6b] | 35 | bin_barnowl_LDADD = compat/libcompat.a libfaim/libfaim.a |
---|
[37f27bc] | 36 | |
---|
[a223b6b] | 37 | bin_tester_SOURCES = $(BASE_SRCS) \ |
---|
[3624a2c] | 38 | owl.h owl_perl.h \ |
---|
[0b65bd7] | 39 | tester.c |
---|
[a223b6b] | 40 | nodist_bin_tester_SOURCES = $(GEN_C) $(GEN_H) |
---|
[0b65bd7] | 41 | |
---|
[a223b6b] | 42 | bin_tester_LDADD = compat/libcompat.a libfaim/libfaim.a |
---|
[42ad917] | 43 | |
---|
[2fa9a1a0] | 44 | TESTS=runtests.sh |
---|
| 45 | |
---|
[cb1243be] | 46 | AM_CPPFLAGS = \ |
---|
[8df704f] | 47 | -I$(top_srcdir)/libfaim/ \ |
---|
[858c9c4] | 48 | -DDATADIR='"$(pkgdatadir)"' \ |
---|
[5a57386] | 49 | -DBINDIR='"$(bindir)"' \ |
---|
[8df704f] | 50 | $(GIT_FLAGS) |
---|
[37f27bc] | 51 | |
---|
[c266281] | 52 | CODELIST_SRCS=message.c mainwin.c popwin.c zephyr.c messagelist.c \ |
---|
[353719a] | 53 | commands.c global.c text.c fmtext.c editwin.c \ |
---|
[06e04a9] | 54 | util.c logging.c \ |
---|
[37f27bc] | 55 | perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \ |
---|
| 56 | regex.c history.c view.c dict.c variable.c filterelement.c pair.c \ |
---|
[d564c3d] | 57 | keypress.c keymap.c keybinding.c cmd.c context.c \ |
---|
[37f27bc] | 58 | aim.c buddy.c buddylist.c style.c errqueue.c \ |
---|
[3f6555d] | 59 | zbuddylist.c popexec.c select.c wcwidth.c \ |
---|
[06e04a9] | 60 | mainpanel.c msgwin.c sepbar.c editcontext.c signal.c closures.c |
---|
[37f9818] | 61 | |
---|
[b80bae0] | 62 | NORMAL_SRCS = filterproc.c filterproc.h window.c window.h windowcb.c |
---|
[37f9818] | 63 | |
---|
| 64 | BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS) |
---|
[37f27bc] | 65 | |
---|
[353719a] | 66 | GEN_C = varstubs.c perlglue.c gmarshal_funcs.c |
---|
[0f5b08e] | 67 | GEN_H = owl_prototypes.h owl_prototypes.h.new gmarshal_funcs.h |
---|
[37f27bc] | 68 | |
---|
| 69 | BUILT_SOURCES = $(GEN_C) $(GEN_H) |
---|
| 70 | |
---|
[1ad4a4a] | 71 | # Only copy file into place if file.new is different |
---|
| 72 | %: %.new |
---|
| 73 | @diff -U0 $@ $< || { \ |
---|
| 74 | test -f $@ && echo '$@ changed!'; \ |
---|
| 75 | echo cp -f $< $@; \ |
---|
| 76 | cp -f $< $@; } |
---|
| 77 | |
---|
[37f27bc] | 78 | proto: owl_prototypes.h |
---|
| 79 | |
---|
[25d7236] | 80 | perlglue.c: perlglue.xs typemap |
---|
[eb5e8fc] | 81 | $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes $< > $@ |
---|
[37f27bc] | 82 | |
---|
[df49ff6] | 83 | varstubs.c: stubgen.pl variable.c |
---|
[76f0e19] | 84 | $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@ |
---|
[37f27bc] | 85 | |
---|
[37f9818] | 86 | owl_prototypes.h.new: codelist.pl varstubs.c $(CODELIST_SRCS) |
---|
[76f0e19] | 87 | $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@ |
---|
[37f27bc] | 88 | |
---|
[353719a] | 89 | gmarshal_funcs.h: marshal_types |
---|
| 90 | glib-genmarshal --header $< > $@ |
---|
| 91 | gmarshal_funcs.c: marshal_types |
---|
| 92 | glib-genmarshal --body $< > $@ |
---|
| 93 | |
---|
[37f27bc] | 94 | # For emacs flymake-mode |
---|
| 95 | check-syntax: proto |
---|
[ce35060] | 96 | $(COMPILE) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES) |
---|
[37f27bc] | 97 | |
---|
[a223b6b] | 98 | CLEANFILES = $(BUILT_SOURCES) $(noinst_SCRIPTS) $(check_SCRIPTS) |
---|
[b80bae0] | 99 | EXTRA_DIST = \ |
---|
| 100 | autogen.sh \ |
---|
[574b952] | 101 | barnowl-wrapper.in \ |
---|
[b80bae0] | 102 | codelist.pl \ |
---|
[78b9503] | 103 | doc/code.txt \ |
---|
| 104 | doc/owl-window.txt \ |
---|
| 105 | doc/releasing-barnowl.txt \ |
---|
[b80bae0] | 106 | examples \ |
---|
| 107 | marshal_types \ |
---|
| 108 | perlglue.xs \ |
---|
| 109 | scripts \ |
---|
| 110 | stubgen.pl \ |
---|
| 111 | typemap |
---|
[0f5b08e] | 112 | |
---|
[12a6616] | 113 | SUBDIRS = compat libfaim perl |
---|