source: Makefile.am @ 40597e7

release-1.10release-1.7release-1.8release-1.9
Last change on this file since 40597e7 was ad788b5, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Move the sepbar stuff into a separate file
  • Property mode set to 100644
File size: 2.7 KB
Line 
1ACLOCAL_AMFLAGS = -I m4
2CFLAGS += $(EXTRA_CFLAGS)
3
4GIT_DESCRIPTION := $(if $(wildcard .git),$(shell git describe --match='barnowl-*' HEAD 2>/dev/null))
5GIT_FLAGS := $(if $(GIT_DESCRIPTION),-DGIT_VERSION=$(GIT_DESCRIPTION:barnowl-%=%))
6
7bin_PROGRAMS = barnowl.bin
8if ENABLE_ZCRYPT
9bin_PROGRAMS += zcrypt
10endif
11
12zcrypt_SOURCES = zcrypt.c filterproc.c
13
14check_PROGRAMS = tester perl_tester
15
16barnowl_bin_SOURCES = $(BASE_SRCS) \
17     owl.h owl_perl.h config.h \
18     owl.c \
19     $(GEN_C) $(GEN_H)
20
21barnowl_bin_LDADD = libfaim/libfaim.a
22
23tester_SOURCES = $(BASE_SRCS) \
24     owl.h owl_perl.h config.h \
25     $(GEN_C) $(GEN_H) \
26     tester.c
27
28tester_LDADD = libfaim/libfaim.a
29
30perl_tester_SOURCES = $(BASE_SRCS) \
31     owl.h owl_perl.h config.h \
32     $(GEN_C) $(GEN_H) \
33     perl_tester.c
34
35perl_tester_LDADD = libfaim/libfaim.a
36
37TESTS=runtests.sh
38
39CPPFLAGS = -I$(top_srcdir)/ \
40           -I$(top_srcdir)/libfaim/ \
41           -DDATADIR='"$(pkgdatadir)"' \
42           -DBINDIR='"$(bindir)"' \
43           $(GIT_FLAGS)
44
45CODELIST_SRCS=list.c message.c mainwin.c popwin.c zephyr.c messagelist.c \
46     commands.c global.c text.c fmtext.c editwin.c util.c logging.c \
47     perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \
48     regex.c history.c view.c dict.c variable.c filterelement.c pair.c \
49     keypress.c keymap.c keybinding.c cmd.c context.c \
50     aim.c buddy.c buddylist.c style.c errqueue.c \
51     zbuddylist.c popexec.c select.c wcwidth.c \
52     glib_compat.c mainpanel.c msgwin.c sepbar.c
53
54NORMAL_SRCS = filterproc.c window.c
55
56BASE_SRCS = $(CODELIST_SRCS) $(NORMAL_SRCS)
57
58GEN_C = varstubs.c perlglue.c globalnotifier.c
59GEN_H = owl_prototypes.h
60
61BUILT_SOURCES = $(GEN_C) $(GEN_H)
62
63# Only copy file into place if file.new is different
64%: %.new
65        @diff -U0 $@ $< || { \
66         test -f $@ && echo '$@ changed!'; \
67         echo cp -f $< $@; \
68              cp -f $< $@; }
69
70proto: owl_prototypes.h
71
72perlglue.c: perlglue.xs $(TYPEMAP)
73        $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs > perlglue.c
74
75varstubs.c: stubgen.pl variable.c
76        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
77
78globalnotifier.c: globalnotifiergen.pl variable.c
79        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
80
81owl_prototypes.h.new: codelist.pl varstubs.c $(CODELIST_SRCS)
82        $(AM_V_GEN)perl $< $(sort $(filter-out $<,$+)) > $@
83
84# For emacs flymake-mode
85check-syntax: proto
86        $(CC) $(CFLAGS) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES)
87
88install-data-local:
89        $(mkinstalldirs) ${DESTDIR}${pkgdatadir}/lib
90        (cd perl/lib && tar -cf - . ) | (cd ${DESTDIR}${pkgdatadir}/lib && tar -xf - )
91
92do_transform = $(shell echo '$(1)' | sed '$(transform)')
93install-exec-hook:
94        mv -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl.bin) \
95              $(DESTDIR)$(bindir)/$(call do_transform,barnowl)
96
97SUBDIRS = libfaim perl
Note: See TracBrowser for help on using the repository browser.