1
2AUTOMAKE_OPTIONS = 1.11 subdir-objects parallel-tests color-tests dist-zip dist-bzip2 dist-xz foreign
3
4ACLOCAL_AMFLAGS = -I m4
5
6# Directories to include in distribution
7DIST_SUBDIRS = basics fpx jpeg ole oless ri_image
8
9# Directories to build
10SUBDIRS = oless jpeg basics ole ri_image fpx
11
12# Where to look for include files
13AM_CPPFLAGS = -I$(top_srcdir)
14
15# Headers which are installed
16include_HEADERS = fpxlib.h
17
18# Shared libraries built in this directory
19lib_LTLIBRARIES = libfpx.la
20
21# Library ld flags
22libfpx_la_LDFLAGS = -version-info $(MAJOR_VERSION):$(MINOR_VERSION)$(MICRO_VERSION):0
23
24# Sources
25libfpx_la_SOURCES =
26nodist_EXTRA_libfpx_la_SOURCES = dummy.cpp
27
28# Convenience libraries
29libfpx_la_LIBADD = \
30  basics/libBasics.la fpx/libfpx.la jpeg/libJpeg.la ole/libole.la \
31  ri_image/libRiImage.la oless/libOless.la
32
33MAJOR_VERSION=@MAJOR_VERSION@
34MINOR_VERSION=@MINOR_VERSION@
35MICRO_VERSION=@MICRO_VERSION@
36
37# Additional files to distribute
38EXTRA_DIST = \
39	README \
40	README.gcc \
41	_mac.sea \
42	commk.gcc \
43	depend.gcc \
44	fpx.h \
45	makefile.gcc \
46	doc/fpx_api.pdf \
47	doc/readme.txt \
48	doc/ri_arch.pdf \
49	_win/fpxlib.aps \
50	_win/fpxlib.dsp \
51	_win/fpxlib.dsw \
52	_win/fpxlib.opt \
53	_win/fpxlib.rc \
54	_win/jpeglib.aps \
55	_win/jpeglib.dsp \
56	_win/jpeglib.rc \
57	_win/resource.h \
58	macdeps/aliases.h \
59	macdeps/appleeve.h \
60	macdeps/appletal.h \
61	macdeps/coguid.h \
62	macdeps/colorcon.h \
63	macdeps/colormat.h \
64	macdeps/componen.h \
65	macdeps/controle.h \
66	macdeps/desk.h \
67	macdeps/dialogs.h \
68	macdeps/dialogue.h \
69	macdeps/errors.h \
70	macdeps/evenemen.h \
71	macdeps/events.h \
72	macdeps/files.h \
73	macdeps/finder.h \
74	macdeps/fonts.h \
75	macdeps/gestalte.h \
76	macdeps/gxprinti.h \
77	macdeps/lists.h \
78	macdeps/lowmem.h \
79	macdeps/lpfilety.h \
80	macdeps/menus.h \
81	macdeps/nif_api.h \
82	macdeps/osevents.h \
83	macdeps/osutils.h \
84	macdeps/packages.h \
85	macdeps/pmemory.h \
86	macdeps/pnoffscr.h \
87	macdeps/preferen.h \
88	macdeps/prefs.h \
89	macdeps/printing.h \
90	macdeps/pwrdef.h \
91	macdeps/qdoffscr.h \
92	macdeps/quickdra.h \
93	macdeps/quicktim.h \
94	macdeps/resource.h \
95	macdeps/sane.h \
96	macdeps/segload.h \
97	macdeps/standard.h \
98	macdeps/strings.h \
99	macdeps/sysequ.h \
100	macdeps/textutil.h \
101	macdeps/unistd.h \
102	macdeps/wininclu.h \
103	macdeps/winolein.h \
104	macdeps/xbitmap.h \
105	macdeps/xnoffscr.h \
106	macdeps/xtrackab.h \
107	macdeps/xvt_env.h \
108	macdeps/xvt.h \
109	macdeps/xvt_styp.h \
110	macdeps/xvt_type.h
111
112# Headers which are not installed but which are distributed
113noinst_HEADERS = flashpix.h
114
115