source: Makefile.am @ e1e59a7

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since e1e59a7 was e1e59a7, checked in by Nelson Elhage <nelhage@mit.edu>, 14 years ago
Merge branch 'unicode-fixes'
  • Property mode set to 100644
File size: 2.2 KB
Line 
1ACLOCAL_AMFLAGS = -I m4
2
3bin_PROGRAMS = barnowl.bin
4check_PROGRAMS = tester perl_tester
5
6barnowl_bin_SOURCES = $(BASE_SRCS) \
7     owl.h owl_perl.h config.h \
8     owl.c \
9     $(GEN_C) $(GEN_H)
10
11barnowl_bin_LDADD = libfaim/libfaim.a
12
13tester_SOURCES = $(BASE_SRCS) \
14     owl.h owl_perl.h config.h \
15     $(GEN_C) $(GEN_H) \
16     tester.c
17
18tester_LDADD = libfaim/libfaim.a
19
20perl_tester_SOURCES = $(BASE_SRCS) \
21     owl.h owl_perl.h config.h \
22     $(GEN_C) $(GEN_H) \
23     perl_tester.c
24
25perl_tester_LDADD = libfaim/libfaim.a
26
27TESTS=runtests.sh
28
29CPPFLAGS = -I$(top_srcdir)/ \
30           -I$(top_srcdir)/libfaim/
31
32BASE_SRCS=list.c message.c mainwin.c popwin.c zephyr.c messagelist.c \
33     commands.c global.c text.c fmtext.c editwin.c util.c logging.c \
34     perlconfig.c keys.c functions.c zwrite.c viewwin.c help.c filter.c \
35     regex.c history.c view.c dict.c variable.c filterelement.c pair.c \
36     keypress.c keymap.c keybinding.c cmd.c context.c zcrypt.c \
37     aim.c buddy.c buddylist.c style.c errqueue.c \
38     zbuddylist.c popexec.c obarray.c select.c wcwidth.c \
39     glib_compat.c
40
41GEN_C = varstubs.c perlglue.c
42GEN_H = owl_prototypes.h
43
44TYPEMAP = typemap
45
46BUILT_SOURCES = $(GEN_C) $(GEN_H)
47
48# Only copy file into place if file.new is different
49%: %.new
50        @diff -U0 $@ $< || { \
51         test -f $@ && echo '$@ changed!'; \
52         echo cp -f $< $@; \
53              cp -f $< $@; }
54
55proto: owl_prototypes.h
56
57perlglue.c: perlglue.xs $(TYPEMAP)
58        $(AM_V_GEN)perl $(XSUBPPDIR)/xsubpp $(XSUBPPFLAGS) -prototypes perlglue.xs -typemap $(TYPEMAP) > perlglue.c
59
60varstubs.c: stubgen.pl variable.c
61        $(AM_V_GEN)perl $< $(filter-out $<,$+) > $@
62
63owl_prototypes.h.new: codelist.pl varstubs.c $(BASE_SRCS)
64        $(AM_V_GEN)perl $< $(filter-out $<,$+) > $@
65
66# For emacs flymake-mode
67check-syntax: proto
68        $(CC) $(CFLAGS) -Wall -Wextra -pedantic -fsyntax-only $(CHK_SOURCES)
69
70install-data-local:
71        $(mkinstalldirs) ${DESTDIR}${pkgdatadir}/lib
72        (cd perl/lib && tar -cf - . ) | (cd ${DESTDIR}${pkgdatadir}/lib && tar -xf - )
73
74do_transform = $(shell echo '$(1)' | sed '$(transform)')
75install-exec-hook:
76        mv -f $(DESTDIR)$(bindir)/$(call do_transform,barnowl.bin) \
77              $(DESTDIR)$(bindir)/$(call do_transform,barnowl)
78
79SUBDIRS = libfaim/ perl/modules/
Note: See TracBrowser for help on using the repository browser.