source: Makefile.am @ 08e9842

release-1.10release-1.8release-1.9
Last change on this file since 08e9842 was 3535a6e, checked in by David Benjamin <davidben@mit.edu>, 13 years ago
First go at sigwait-based signal handling Instead of relying on pselect and signal masking to listen for signals, which glib doesn't support, we spawn a dedicated signal thread that loops in sigwait. These signals are posted back to the main message loop which may handle them at will. This avoids the need for complex reentrant code and sig_atomic_t. This removes the final pre-select action. SIGINT doesn't quite work right yet because we can no longer take it in the middle of an event loop iteration.
  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[eddee7e]1ACLOCAL_AMFLAGS = -I m4
[8073852]2
[89982ec]3GIT_DESCRIPTION := $(if $(wildcard .git),$(shell git describe --match='barnowl-*' HEAD 2>/dev/null))
4GIT_FLAGS := $(if $(GIT_DESCRIPTION),-DGIT_VERSION=$(GIT_DESCRIPTION:barnowl-%=%))
[8df704f]5
[37f27bc]6bin_PROGRAMS = barnowl.bin
[7d03c8d]7if ENABLE_ZCRYPT
8bin_PROGRAMS += zcrypt
9endif
10
11zcrypt_SOURCES = zcrypt.c filterproc.c
12
[5aa33fd]13check_PROGRAMS = tester.bin
[37f27bc]14
15barnowl_bin_SOURCES = $(BASE_SRCS) \
[0b65bd7]16     owl.h owl_perl.h config.h \
[ae333f0]17     owl.c \
[37f27bc]18     $(GEN_C) $(GEN_H)
19
[e2bc8ac]20man_MANS = doc/barnowl.1
[9d27ee8]21doc_DATA = doc/intro.txt doc/advanced.txt
[e2bc8ac]22
[12a6616]23barnowl_bin_LDADD = compat/libcompat.a libfaim/libfaim.a
[37f27bc]24
[de18326]25tester_bin_SOURCES = $(BASE_SRCS) \
[8bce750]26     owl.h owl_perl.h config.h \
[0b65bd7]27     $(GEN_C) $(GEN_H) \
28     tester.c
29
[12a6616]30tester_bin_LDADD = compat/libcompat.a libfaim/libfaim.a
[42ad917]31
[2fa9a1a0]32TESTS=runtests.sh
33
[ce35060]34AM_CPPFLAGS = -I$(top_srcdir)/ \
[8df704f]35           -I$(top_srcdir)/libfaim/ \
[858c9c4]36           -DDATADIR='"$(pkgdatadir)"' \
[5a57386]37           -DBINDIR='"$(bindir)"' \
[8df704f]38           $(GIT_FLAGS)
[37f27bc]39
[37f9818]40CODELIST_SRCS=list.c message.c mainwin.c popwin.c zephyr.c messagelist.c \
[37f27bc]41     commands.c global.c text.c fmtext.c editwin.c util.c logging.c \
42     perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \
43     regex.c history.c view.c dict.c variable.c filterelement.c pair.c \
[d564c3d]44     keypress.c keymap.c keybinding.c cmd.c context.c \
[37f27bc]45     aim.c buddy.c buddylist.c style.c errqueue.c \
[3f6555d]46     zbuddylist.c popexec.c select.c wcwidth.c \
[3535a6e]47     glib_compat.c mainpanel.c msgwin.c sepbar.c editcontext.c signal.c
[37f9818]48
[8f9a044]49NORMAL_SRCS = filterproc.c window.c windowcb.c
[37f9818]50
51BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS)
[37f27bc]52
53GEN_C = varstubs.c perlglue.c
54GEN_H = owl_prototypes.h
55
56BUILT_SOURCES = $(GEN_C) $(GEN_H)
57
[1ad4a4a]58# Only copy file into place if file.new is different
59%: %.new
60        @diff -U0 $@ $< || { \
61         test -f $@ && echo '$@ changed!'; \
62         echo cp -f $< $@; \
63              cp -f $< $@; }
64
[37f27bc]65proto: owl_prototypes.h
66
[39e81f7]67perlglue.c: perlglue.xs $(TYPEMAP)
[5b376388]68        $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs > perlglue.c
[37f27bc]69
[df49ff6]70varstubs.c: stubgen.pl variable.c
[76f0e19]71        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
[37f27bc]72
[37f9818]73owl_prototypes.h.new: codelist.pl varstubs.c $(CODELIST_SRCS)
[76f0e19]74        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
[37f27bc]75
76# For emacs flymake-mode
77check-syntax: proto
[ce35060]78        $(COMPILE) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES)
[37f27bc]79
80install-data-local:
81        $(mkinstalldirs) ${DESTDIR}${pkgdatadir}/lib
82        (cd perl/lib && tar -cf - . ) | (cd ${DESTDIR}${pkgdatadir}/lib && tar -xf - )
83
84do_transform = $(shell echo '$(1)' | sed '$(transform)')
85install-exec-hook:
86        mv -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl.bin) \
87              $(DESTDIR)$(bindir)/$(call do_transform,barnowl)
88
[12a6616]89SUBDIRS = compat libfaim perl
Note: See TracBrowser for help on using the repository browser.