source: Makefile.am @ e60f98c

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