/[svn]/linuxsampler/trunk/src/Makefile.in
ViewVC logotype

Annotation of /linuxsampler/trunk/src/Makefile.in

Parent Directory Parent Directory | Revision Log Revision Log


Revision 123 - (hide annotations) (download)
Mon Jun 14 19:33:16 2004 UTC (19 years, 11 months ago) by schoenebeck
File size: 17574 byte(s)
* src/common: added template class 'optional<>' which can be used e.g. as
  return type whenever a value might be returned, but don't has to; this
  template class pretty much acts like a pointer of the given type, but is
  much more safer than a simple pointer
* src/audiodriver: added static class AudioDeviceFactory to create audio
  devices at runtime by using a string and to obtain driver informations
  of drivers at runtime, driver classes should simply use the macro
  REGISTER_AUDIO_OUTPUT_DRIVER(DriverName,DriverClass) in their cpp file
  to register the driver to LinuxSampler (no changes needed anymore in the
  LS code to add a new audio output driver)
* src/drivers: added classes to dynamically manage driver parameters; there
  are two different kinds of parameters: parameters which are need to
  create a new device (DeviceCreationParameterX) used to e.g. create an
  audio output device or a MIDI input device and parameters which are only
  available at runtime, means when a device is already created
  (DeviceRuntimeParameterX) which will be e.g. used as audio channel
  parameters and MIDI port parameters
* src/linuxsampler.cpp: all registered audio output drivers will be shown
  on the console on startup
* src/network: implemented configuration of audio output devices via LSCP

1 schoenebeck 9 # Makefile.in generated by automake 1.6.3 from Makefile.am.
2     # @configure_input@
3    
4     # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
5     # Free Software Foundation, Inc.
6     # This Makefile.in is free software; the Free Software Foundation
7     # gives unlimited permission to copy and/or distribute it,
8     # with or without modifications, as long as this notice is preserved.
9    
10     # This program is distributed in the hope that it will be useful,
11     # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12     # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13     # PARTICULAR PURPOSE.
14    
15     @SET_MAKE@
16     SHELL = @SHELL@
17    
18     srcdir = @srcdir@
19     top_srcdir = @top_srcdir@
20     VPATH = @srcdir@
21     prefix = @prefix@
22     exec_prefix = @exec_prefix@
23    
24     bindir = @bindir@
25     sbindir = @sbindir@
26     libexecdir = @libexecdir@
27     datadir = @datadir@
28     sysconfdir = @sysconfdir@
29     sharedstatedir = @sharedstatedir@
30     localstatedir = @localstatedir@
31     libdir = @libdir@
32     infodir = @infodir@
33     mandir = @mandir@
34     includedir = @includedir@
35     oldincludedir = /usr/include
36     pkgdatadir = $(datadir)/@PACKAGE@
37     pkglibdir = $(libdir)/@PACKAGE@
38     pkgincludedir = $(includedir)/@PACKAGE@
39     top_builddir = ..
40    
41     ACLOCAL = @ACLOCAL@
42     AUTOCONF = @AUTOCONF@
43     AUTOMAKE = @AUTOMAKE@
44     AUTOHEADER = @AUTOHEADER@
45    
46     am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
47     INSTALL = @INSTALL@
48     INSTALL_PROGRAM = @INSTALL_PROGRAM@
49     INSTALL_DATA = @INSTALL_DATA@
50     install_sh_DATA = $(install_sh) -c -m 644
51     install_sh_PROGRAM = $(install_sh) -c
52     install_sh_SCRIPT = $(install_sh) -c
53     INSTALL_SCRIPT = @INSTALL_SCRIPT@
54     INSTALL_HEADER = $(INSTALL_DATA)
55     transform = @program_transform_name@
56     NORMAL_INSTALL = :
57     PRE_INSTALL = :
58     POST_INSTALL = :
59     NORMAL_UNINSTALL = :
60     PRE_UNINSTALL = :
61     POST_UNINSTALL = :
62     build_alias = @build_alias@
63     build_triplet = @build@
64     host_alias = @host_alias@
65     host_triplet = @host@
66     target_alias = @target_alias@
67     target_triplet = @target@
68    
69     EXEEXT = @EXEEXT@
70     OBJEXT = @OBJEXT@
71     PATH_SEPARATOR = @PATH_SEPARATOR@
72     AMTAR = @AMTAR@
73     AR = @AR@
74     AS = @AS@
75     AWK = @AWK@
76     CC = @CC@
77     CXX = @CXX@
78     CXXCPP = @CXXCPP@
79     DEPDIR = @DEPDIR@
80     DLLTOOL = @DLLTOOL@
81     ECHO = @ECHO@
82     EGREP = @EGREP@
83     F77 = @F77@
84     GCJ = @GCJ@
85     GCJFLAGS = @GCJFLAGS@
86     INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
87 schoenebeck 31 JACK_CFLAGS = @JACK_CFLAGS@
88     JACK_LIBS = @JACK_LIBS@
89 schoenebeck 9 LIBTOOL = @LIBTOOL@
90     LN_S = @LN_S@
91     OBJDUMP = @OBJDUMP@
92     PACKAGE = @PACKAGE@
93 schoenebeck 31 PKG_CONFIG = @PKG_CONFIG@
94 schoenebeck 9 RANLIB = @RANLIB@
95     RC = @RC@
96     STRIP = @STRIP@
97     VERSION = @VERSION@
98     am__include = @am__include@
99     am__quote = @am__quote@
100     install_sh = @install_sh@
101 schoenebeck 80 target = @target@
102     target_cpu = @target_cpu@
103     target_os = @target_os@
104     target_vendor = @target_vendor@
105 schoenebeck 9
106     # set the include path found by configure
107     INCLUDES = $(all_includes)
108    
109 schoenebeck 80 AM_CXXFLAGS = -ffast-math -march=$(target_cpu) -mcpu=$(target_cpu)
110 schoenebeck 9
111 schoenebeck 123 SUBDIRS = network engines common audiodriver mididriver lib testcases drivers
112 schoenebeck 53
113     pkglib_LTLIBRARIES = liblinuxsampler.la
114     liblinuxsampler_la_SOURCES = Sampler.cpp Sampler.h
115 schoenebeck 123 liblinuxsampler_la_LIBADD = $(top_builddir)/src/network/liblinuxsamplernetwork.la $(top_builddir)/src/mididriver/liblinuxsamplermididriver.la $(top_builddir)/src/lib/fileloader/libgig/libgig.la $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la $(top_builddir)/src/drivers/liblinuxsamplerdrivers.la $(top_builddir)/src/common/liblinuxsamplercommon.la $(top_builddir)/src/audiodriver/liblinuxsampleraudiodriver.la
116     liblinuxsampler_la_LDFLAGS = -module
117 schoenebeck 53
118     bin_PROGRAMS = linuxsampler
119     linuxsampler_SOURCES = linuxsampler.cpp
120 schoenebeck 57 linuxsampler_LDADD = $(top_builddir)/src/liblinuxsampler.la
121 schoenebeck 9 subdir = src
122     mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
123     CONFIG_HEADER = $(top_builddir)/config.h
124     CONFIG_CLEAN_FILES =
125 schoenebeck 53 LTLIBRARIES = $(pkglib_LTLIBRARIES)
126 schoenebeck 9
127 schoenebeck 57 liblinuxsampler_la_DEPENDENCIES = \
128     $(top_builddir)/src/network/liblinuxsamplernetwork.la \
129     $(top_builddir)/src/mididriver/liblinuxsamplermididriver.la \
130     $(top_builddir)/src/lib/fileloader/libgig/libgig.la \
131     $(top_builddir)/src/engines/gig/liblinuxsamplergigengine.la \
132     $(top_builddir)/src/engines/common/liblinuxsamplercommonengine.la \
133 schoenebeck 123 $(top_builddir)/src/drivers/liblinuxsamplerdrivers.la \
134 schoenebeck 57 $(top_builddir)/src/common/liblinuxsamplercommon.la \
135     $(top_builddir)/src/audiodriver/liblinuxsampleraudiodriver.la
136 schoenebeck 53 am_liblinuxsampler_la_OBJECTS = Sampler.lo
137     liblinuxsampler_la_OBJECTS = $(am_liblinuxsampler_la_OBJECTS)
138 schoenebeck 9 bin_PROGRAMS = linuxsampler$(EXEEXT)
139     PROGRAMS = $(bin_PROGRAMS)
140    
141 schoenebeck 53 am_linuxsampler_OBJECTS = linuxsampler.$(OBJEXT)
142 schoenebeck 9 linuxsampler_OBJECTS = $(am_linuxsampler_OBJECTS)
143 schoenebeck 57 linuxsampler_DEPENDENCIES = $(top_builddir)/src/liblinuxsampler.la
144 schoenebeck 53 linuxsampler_LDFLAGS =
145 schoenebeck 9
146     DEFS = @DEFS@
147     DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
148     CPPFLAGS = @CPPFLAGS@
149     LDFLAGS = @LDFLAGS@
150     LIBS = @LIBS@
151     depcomp = $(SHELL) $(top_srcdir)/depcomp
152     am__depfiles_maybe = depfiles
153 schoenebeck 53 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/Sampler.Plo \
154     @AMDEP_TRUE@ ./$(DEPDIR)/linuxsampler.Po
155 schoenebeck 9 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
156     $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
157     LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
158     $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
159     $(AM_CXXFLAGS) $(CXXFLAGS)
160     CXXLD = $(CXX)
161     CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
162     $(AM_LDFLAGS) $(LDFLAGS) -o $@
163     CXXFLAGS = @CXXFLAGS@
164     CFLAGS = @CFLAGS@
165     COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
166     $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
167     LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \
168     $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
169     CCLD = $(CC)
170     LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
171     $(AM_LDFLAGS) $(LDFLAGS) -o $@
172 schoenebeck 53 DIST_SOURCES = $(liblinuxsampler_la_SOURCES) $(linuxsampler_SOURCES)
173 schoenebeck 30
174 schoenebeck 35 RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
175     uninstall-info-recursive all-recursive install-data-recursive \
176     install-exec-recursive installdirs-recursive install-recursive \
177     uninstall-recursive check-recursive installcheck-recursive
178 schoenebeck 53 DIST_COMMON = Makefile.am Makefile.in
179 schoenebeck 35 DIST_SUBDIRS = $(SUBDIRS)
180 schoenebeck 53 SOURCES = $(liblinuxsampler_la_SOURCES) $(linuxsampler_SOURCES)
181 schoenebeck 9
182 schoenebeck 35 all: all-recursive
183 schoenebeck 9
184     .SUFFIXES:
185     .SUFFIXES: .cpp .lo .o .obj
186     $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
187     cd $(top_srcdir) && \
188     $(AUTOMAKE) --gnu src/Makefile
189     Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
190     cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
191 schoenebeck 53 pkglibLTLIBRARIES_INSTALL = $(INSTALL)
192     install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES)
193 schoenebeck 9 @$(NORMAL_INSTALL)
194 schoenebeck 53 $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
195     @list='$(pkglib_LTLIBRARIES)'; for p in $$list; do \
196 schoenebeck 9 if test -f $$p; then \
197     f="`echo $$p | sed -e 's|^.*/||'`"; \
198 schoenebeck 53 echo " $(LIBTOOL) --mode=install $(pkglibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pkglibdir)/$$f"; \
199     $(LIBTOOL) --mode=install $(pkglibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pkglibdir)/$$f; \
200 schoenebeck 9 else :; fi; \
201     done
202 schoenebeck 53
203     uninstall-pkglibLTLIBRARIES:
204     @$(NORMAL_UNINSTALL)
205     @list='$(pkglib_LTLIBRARIES)'; for p in $$list; do \
206 schoenebeck 9 p="`echo $$p | sed -e 's|^.*/||'`"; \
207 schoenebeck 53 echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(pkglibdir)/$$p"; \
208     $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(pkglibdir)/$$p; \
209 schoenebeck 9 done
210    
211 schoenebeck 53 clean-pkglibLTLIBRARIES:
212     -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES)
213     @list='$(pkglib_LTLIBRARIES)'; for p in $$list; do \
214     dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
215     test -z "$dir" && dir=.; \
216     echo "rm -f \"$${dir}/so_locations\""; \
217     rm -f "$${dir}/so_locations"; \
218 schoenebeck 9 done
219 schoenebeck 53 liblinuxsampler.la: $(liblinuxsampler_la_OBJECTS) $(liblinuxsampler_la_DEPENDENCIES)
220     $(CXXLINK) -rpath $(pkglibdir) $(liblinuxsampler_la_LDFLAGS) $(liblinuxsampler_la_OBJECTS) $(liblinuxsampler_la_LIBADD) $(LIBS)
221 schoenebeck 9 binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
222     install-binPROGRAMS: $(bin_PROGRAMS)
223     @$(NORMAL_INSTALL)
224     $(mkinstalldirs) $(DESTDIR)$(bindir)
225     @list='$(bin_PROGRAMS)'; for p in $$list; do \
226     p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
227     if test -f $$p \
228     || test -f $$p1 \
229     ; then \
230     f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
231     echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \
232     $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f; \
233     else :; fi; \
234     done
235    
236     uninstall-binPROGRAMS:
237     @$(NORMAL_UNINSTALL)
238     @list='$(bin_PROGRAMS)'; for p in $$list; do \
239     f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
240     echo " rm -f $(DESTDIR)$(bindir)/$$f"; \
241     rm -f $(DESTDIR)$(bindir)/$$f; \
242     done
243    
244     clean-binPROGRAMS:
245     @list='$(bin_PROGRAMS)'; for p in $$list; do \
246     f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
247     echo " rm -f $$p $$f"; \
248     rm -f $$p $$f ; \
249     done
250     linuxsampler$(EXEEXT): $(linuxsampler_OBJECTS) $(linuxsampler_DEPENDENCIES)
251     @rm -f linuxsampler$(EXEEXT)
252     $(CXXLINK) $(linuxsampler_LDFLAGS) $(linuxsampler_OBJECTS) $(linuxsampler_LDADD) $(LIBS)
253    
254     mostlyclean-compile:
255     -rm -f *.$(OBJEXT) core *.core
256    
257     distclean-compile:
258     -rm -f *.tab.c
259    
260 schoenebeck 53 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Sampler.Plo@am__quote@
261 schoenebeck 9 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linuxsampler.Po@am__quote@
262    
263     distclean-depend:
264     -rm -rf ./$(DEPDIR)
265    
266     .cpp.o:
267     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
268     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
269     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
270     $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
271    
272     .cpp.obj:
273     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
274     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
275     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
276     $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
277    
278     .cpp.lo:
279     @AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
280     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
281     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
282     $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
283     CXXDEPMODE = @CXXDEPMODE@
284    
285     mostlyclean-libtool:
286     -rm -f *.lo
287    
288     clean-libtool:
289     -rm -rf .libs _libs
290    
291     distclean-libtool:
292     -rm -f libtool
293     uninstall-info-am:
294    
295 schoenebeck 35 # This directory's subdirectories are mostly independent; you can cd
296     # into them and run `make' without going through this Makefile.
297     # To change the values of `make' variables: instead of editing Makefiles,
298     # (1) if the variable is set in `config.status', edit `config.status'
299     # (which will cause the Makefiles to be regenerated when you run `make');
300     # (2) otherwise, pass the desired values on the `make' command line.
301     $(RECURSIVE_TARGETS):
302     @set fnord $$MAKEFLAGS; amf=$$2; \
303     dot_seen=no; \
304     target=`echo $@ | sed s/-recursive//`; \
305     list='$(SUBDIRS)'; for subdir in $$list; do \
306     echo "Making $$target in $$subdir"; \
307     if test "$$subdir" = "."; then \
308     dot_seen=yes; \
309     local_target="$$target-am"; \
310     else \
311     local_target="$$target"; \
312     fi; \
313     (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
314     || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
315     done; \
316     if test "$$dot_seen" = "no"; then \
317     $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
318     fi; test -z "$$fail"
319    
320     mostlyclean-recursive clean-recursive distclean-recursive \
321     maintainer-clean-recursive:
322     @set fnord $$MAKEFLAGS; amf=$$2; \
323     dot_seen=no; \
324     case "$@" in \
325     distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
326     *) list='$(SUBDIRS)' ;; \
327     esac; \
328     rev=''; for subdir in $$list; do \
329     if test "$$subdir" = "."; then :; else \
330     rev="$$subdir $$rev"; \
331     fi; \
332     done; \
333     rev="$$rev ."; \
334     target=`echo $@ | sed s/-recursive//`; \
335     for subdir in $$rev; do \
336     echo "Making $$target in $$subdir"; \
337     if test "$$subdir" = "."; then \
338     local_target="$$target-am"; \
339     else \
340     local_target="$$target"; \
341     fi; \
342     (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
343     || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
344     done && test -z "$$fail"
345     tags-recursive:
346     list='$(SUBDIRS)'; for subdir in $$list; do \
347     test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
348     done
349    
350 schoenebeck 9 ETAGS = etags
351     ETAGSFLAGS =
352    
353     tags: TAGS
354    
355     ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
356     list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
357     unique=`for i in $$list; do \
358     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
359     done | \
360     $(AWK) ' { files[$$0] = 1; } \
361     END { for (i in files) print i; }'`; \
362     mkid -fID $$unique
363    
364 schoenebeck 35 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
365 schoenebeck 9 $(TAGS_FILES) $(LISP)
366     tags=; \
367     here=`pwd`; \
368 schoenebeck 35 list='$(SUBDIRS)'; for subdir in $$list; do \
369     if test "$$subdir" = .; then :; else \
370     test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
371     fi; \
372     done; \
373 schoenebeck 9 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
374     unique=`for i in $$list; do \
375     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
376     done | \
377     $(AWK) ' { files[$$0] = 1; } \
378     END { for (i in files) print i; }'`; \
379     test -z "$(ETAGS_ARGS)$$tags$$unique" \
380     || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
381     $$tags $$unique
382    
383     GTAGS:
384     here=`$(am__cd) $(top_builddir) && pwd` \
385     && cd $(top_srcdir) \
386     && gtags -i $(GTAGS_ARGS) $$here
387    
388     distclean-tags:
389     -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
390     DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
391    
392     top_distdir = ..
393     distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
394    
395     distdir: $(DISTFILES)
396     @list='$(DISTFILES)'; for file in $$list; do \
397     if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
398     dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
399     if test "$$dir" != "$$file" && test "$$dir" != "."; then \
400     dir="/$$dir"; \
401     $(mkinstalldirs) "$(distdir)$$dir"; \
402     else \
403     dir=''; \
404     fi; \
405     if test -d $$d/$$file; then \
406     if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
407     cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
408     fi; \
409     cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
410     else \
411     test -f $(distdir)/$$file \
412     || cp -p $$d/$$file $(distdir)/$$file \
413     || exit 1; \
414     fi; \
415     done
416 schoenebeck 35 list='$(SUBDIRS)'; for subdir in $$list; do \
417     if test "$$subdir" = .; then :; else \
418     test -d $(distdir)/$$subdir \
419     || mkdir $(distdir)/$$subdir \
420     || exit 1; \
421     (cd $$subdir && \
422     $(MAKE) $(AM_MAKEFLAGS) \
423     top_distdir="$(top_distdir)" \
424     distdir=../$(distdir)/$$subdir \
425     distdir) \
426     || exit 1; \
427     fi; \
428     done
429 schoenebeck 9 check-am: all-am
430 schoenebeck 35 check: check-recursive
431 schoenebeck 53 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
432 schoenebeck 35 installdirs: installdirs-recursive
433     installdirs-am:
434 schoenebeck 53 $(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(DESTDIR)$(bindir)
435 schoenebeck 9
436 schoenebeck 35 install: install-recursive
437     install-exec: install-exec-recursive
438     install-data: install-data-recursive
439     uninstall: uninstall-recursive
440 schoenebeck 9
441     install-am: all-am
442     @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
443    
444 schoenebeck 35 installcheck: installcheck-recursive
445 schoenebeck 9 install-strip:
446     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
447     INSTALL_STRIP_FLAG=-s \
448     `test -z '$(STRIP)' || \
449     echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
450     mostlyclean-generic:
451    
452     clean-generic:
453    
454     distclean-generic:
455     -rm -f Makefile $(CONFIG_CLEAN_FILES)
456    
457     maintainer-clean-generic:
458     @echo "This command is intended for maintainers to use"
459     @echo "it deletes files that may require special tools to rebuild."
460 schoenebeck 35 clean: clean-recursive
461 schoenebeck 9
462 schoenebeck 53 clean-am: clean-binPROGRAMS clean-generic clean-libtool \
463     clean-pkglibLTLIBRARIES mostlyclean-am
464 schoenebeck 9
465 schoenebeck 35 distclean: distclean-recursive
466 schoenebeck 9
467     distclean-am: clean-am distclean-compile distclean-depend \
468     distclean-generic distclean-libtool distclean-tags
469    
470 schoenebeck 35 dvi: dvi-recursive
471 schoenebeck 9
472     dvi-am:
473    
474 schoenebeck 35 info: info-recursive
475 schoenebeck 9
476     info-am:
477    
478     install-data-am:
479    
480 schoenebeck 53 install-exec-am: install-binPROGRAMS install-pkglibLTLIBRARIES
481 schoenebeck 9
482 schoenebeck 35 install-info: install-info-recursive
483 schoenebeck 9
484     install-man:
485    
486     installcheck-am:
487    
488 schoenebeck 35 maintainer-clean: maintainer-clean-recursive
489 schoenebeck 9
490     maintainer-clean-am: distclean-am maintainer-clean-generic
491    
492 schoenebeck 35 mostlyclean: mostlyclean-recursive
493 schoenebeck 9
494     mostlyclean-am: mostlyclean-compile mostlyclean-generic \
495     mostlyclean-libtool
496    
497     uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
498 schoenebeck 53 uninstall-pkglibLTLIBRARIES
499 schoenebeck 9
500 schoenebeck 35 uninstall-info: uninstall-info-recursive
501 schoenebeck 9
502 schoenebeck 35 .PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
503 schoenebeck 53 clean-binPROGRAMS clean-generic clean-libtool \
504     clean-pkglibLTLIBRARIES clean-recursive distclean \
505     distclean-compile distclean-depend distclean-generic \
506     distclean-libtool distclean-recursive distclean-tags distdir \
507     dvi dvi-am dvi-recursive info info-am info-recursive install \
508     install-am install-binPROGRAMS install-data install-data-am \
509 schoenebeck 35 install-data-recursive install-exec install-exec-am \
510     install-exec-recursive install-info install-info-am \
511 schoenebeck 53 install-info-recursive install-man install-pkglibLTLIBRARIES \
512 schoenebeck 35 install-recursive install-strip installcheck installcheck-am \
513     installdirs installdirs-am installdirs-recursive \
514     maintainer-clean maintainer-clean-generic \
515     maintainer-clean-recursive mostlyclean mostlyclean-compile \
516     mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
517     tags tags-recursive uninstall uninstall-am \
518     uninstall-binPROGRAMS uninstall-info-am \
519 schoenebeck 53 uninstall-info-recursive uninstall-pkglibLTLIBRARIES \
520 schoenebeck 35 uninstall-recursive
521    
522 schoenebeck 9 # Tell versions [3.59,3.63) of GNU make to not export all variables.
523     # Otherwise a system limit (for SysV at least) may be exceeded.
524     .NOEXPORT:

  ViewVC Help
Powered by ViewVC