lib: show offset and rectype in HexDumpParser
[barry.git] / Makefile.am
blob0867aa5f8db9bad5d6bc54ad47e7453111599626
1 DISTCHECK_CONFIGURE_FLAGS = --enable-gui --enable-opensync-plugin --enable-opensync-plugin-4x
3 ACLOCAL_FLAGS = -I m4
4 ACLOCAL_AMFLAGS = -I m4
6 EXTRA_DIST = COPYING ChangeLog README Doxyfile \
7         buildgen.sh \
8         data \
9         doc \
10         hotplug \
11         maintainer \
12         modprobe \
13         ppp \
14         rpm \
15         test \
16         udev
18 SUBDIRS = po . src tools examples man
19 # conditionally configured nested subdirectories are listed in $(subdirs)
20 SUBDIRS += $(subdirs)
22 pkgconfig_DATA = libbarry-0.pc libbarrydp-0.pc libbarryjdwp-0.pc
23 if WITH_SYNC
24 pkgconfig_DATA += libbarrysync-0.pc
25 endif
26 if WITH_BACKUP
27 pkgconfig_DATA += libbarrybackup-0.pc
28 endif
29 if WITH_ALX
30 pkgconfig_DATA += libbarryalx-0.pc
31 endif
33 all-local:
34         rm -f $(top_builddir)/barry
35         ln -s $(top_srcdir)/src $(top_builddir)/barry
37 clean-local:
38         rm -f $(top_builddir)/barry
40 # these directories will be tested for during make dist to warn if they are
41 # missing - a new nested package should be added both here and in configure.ac
42 CONDITIONAL_SUBDIRS = gui opensync-plugin opensync-plugin-0.4x
43 dist-hook:
44         rm -rf `find $(distdir) -name CVS`
45         @for subdir in $(CONDITIONAL_SUBDIRS); do \
46                 if test ! -d $(distdir)/$$subdir; then \
47                         if test -z "$$MISSING_DIRS"; then \
48                                 echo "###############################################################################"; \
49                                 MISSING_DIRS="--enable-$$subdir"; \
50                         else \
51                                 MISSING_DIRS="$$MISSING_DIRS --enable-$$subdir"; \
52                          fi; \
53                         echo "ERROR: The $$subdir subdirectory has been omitted!"; \
54                 else :; fi; \
55         done; \
56         if test -n "$$MISSING_DIRS"; then \
57                 echo ; \
58                 echo "rerun configure with $$MISSING_DIRS before running make dist"; \
59                 echo "###############################################################################"; \
60                 exit 1; \
61         else :; fi;