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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 80 - (hide annotations) (download)
Sun May 23 19:16:33 2004 UTC (19 years, 11 months ago) by schoenebeck
File size: 17454 byte(s)
* biquad filter parameters are now calculated outside the interpolate
  loop for better performance
* couple of loop unroll optimizations
* filter is now enabled by default
* cubic interpolation is now enabled by default
* reduced debug level to 1 to lower verbosity
* raised default limit for voices to 128
* raised default limit for streams to 150
* added some compiler optimization flags (-ffast-math -march -mcpu)

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 57 SUBDIRS = network engines common audiodriver mididriver lib testcases
112 schoenebeck 53
113     pkglib_LTLIBRARIES = liblinuxsampler.la
114     liblinuxsampler_la_SOURCES = Sampler.cpp Sampler.h
115 schoenebeck 57 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/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     $(top_builddir)/src/common/liblinuxsamplercommon.la \
134     $(top_builddir)/src/audiodriver/liblinuxsampleraudiodriver.la
135 schoenebeck 53 am_liblinuxsampler_la_OBJECTS = Sampler.lo
136     liblinuxsampler_la_OBJECTS = $(am_liblinuxsampler_la_OBJECTS)
137 schoenebeck 9 bin_PROGRAMS = linuxsampler$(EXEEXT)
138     PROGRAMS = $(bin_PROGRAMS)
139    
140 schoenebeck 53 am_linuxsampler_OBJECTS = linuxsampler.$(OBJEXT)
141 schoenebeck 9 linuxsampler_OBJECTS = $(am_linuxsampler_OBJECTS)
142 schoenebeck 57 linuxsampler_DEPENDENCIES = $(top_builddir)/src/liblinuxsampler.la
143 schoenebeck 53 linuxsampler_LDFLAGS =
144 schoenebeck 9
145     DEFS = @DEFS@
146     DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
147     CPPFLAGS = @CPPFLAGS@
148     LDFLAGS = @LDFLAGS@
149     LIBS = @LIBS@
150     depcomp = $(SHELL) $(top_srcdir)/depcomp
151     am__depfiles_maybe = depfiles
152 schoenebeck 53 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/Sampler.Plo \
153     @AMDEP_TRUE@ ./$(DEPDIR)/linuxsampler.Po
154 schoenebeck 9 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
155     $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
156     LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \
157     $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
158     $(AM_CXXFLAGS) $(CXXFLAGS)
159     CXXLD = $(CXX)
160     CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \
161     $(AM_LDFLAGS) $(LDFLAGS) -o $@
162     CXXFLAGS = @CXXFLAGS@
163     CFLAGS = @CFLAGS@
164     COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
165     $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
166     LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \
167     $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
168     CCLD = $(CC)
169     LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
170     $(AM_LDFLAGS) $(LDFLAGS) -o $@
171 schoenebeck 53 DIST_SOURCES = $(liblinuxsampler_la_SOURCES) $(linuxsampler_SOURCES)
172 schoenebeck 30
173 schoenebeck 35 RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
174     uninstall-info-recursive all-recursive install-data-recursive \
175     install-exec-recursive installdirs-recursive install-recursive \
176     uninstall-recursive check-recursive installcheck-recursive
177 schoenebeck 53 DIST_COMMON = Makefile.am Makefile.in
178 schoenebeck 35 DIST_SUBDIRS = $(SUBDIRS)
179 schoenebeck 53 SOURCES = $(liblinuxsampler_la_SOURCES) $(linuxsampler_SOURCES)
180 schoenebeck 9
181 schoenebeck 35 all: all-recursive
182 schoenebeck 9
183     .SUFFIXES:
184     .SUFFIXES: .cpp .lo .o .obj
185     $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
186     cd $(top_srcdir) && \
187     $(AUTOMAKE) --gnu src/Makefile
188     Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
189     cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
190 schoenebeck 53 pkglibLTLIBRARIES_INSTALL = $(INSTALL)
191     install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES)
192 schoenebeck 9 @$(NORMAL_INSTALL)
193 schoenebeck 53 $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
194     @list='$(pkglib_LTLIBRARIES)'; for p in $$list; do \
195 schoenebeck 9 if test -f $$p; then \
196     f="`echo $$p | sed -e 's|^.*/||'`"; \
197 schoenebeck 53 echo " $(LIBTOOL) --mode=install $(pkglibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pkglibdir)/$$f"; \
198     $(LIBTOOL) --mode=install $(pkglibLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) $$p $(DESTDIR)$(pkglibdir)/$$f; \
199 schoenebeck 9 else :; fi; \
200     done
201 schoenebeck 53
202     uninstall-pkglibLTLIBRARIES:
203     @$(NORMAL_UNINSTALL)
204     @list='$(pkglib_LTLIBRARIES)'; for p in $$list; do \
205 schoenebeck 9 p="`echo $$p | sed -e 's|^.*/||'`"; \
206 schoenebeck 53 echo " $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(pkglibdir)/$$p"; \
207     $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(pkglibdir)/$$p; \
208 schoenebeck 9 done
209    
210 schoenebeck 53 clean-pkglibLTLIBRARIES:
211     -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES)
212     @list='$(pkglib_LTLIBRARIES)'; for p in $$list; do \
213     dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
214     test -z "$dir" && dir=.; \
215     echo "rm -f \"$${dir}/so_locations\""; \
216     rm -f "$${dir}/so_locations"; \
217 schoenebeck 9 done
218 schoenebeck 53 liblinuxsampler.la: $(liblinuxsampler_la_OBJECTS) $(liblinuxsampler_la_DEPENDENCIES)
219     $(CXXLINK) -rpath $(pkglibdir) $(liblinuxsampler_la_LDFLAGS) $(liblinuxsampler_la_OBJECTS) $(liblinuxsampler_la_LIBADD) $(LIBS)
220 schoenebeck 9 binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
221     install-binPROGRAMS: $(bin_PROGRAMS)
222     @$(NORMAL_INSTALL)
223     $(mkinstalldirs) $(DESTDIR)$(bindir)
224     @list='$(bin_PROGRAMS)'; for p in $$list; do \
225     p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
226     if test -f $$p \
227     || test -f $$p1 \
228     ; then \
229     f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
230     echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \
231     $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f; \
232     else :; fi; \
233     done
234    
235     uninstall-binPROGRAMS:
236     @$(NORMAL_UNINSTALL)
237     @list='$(bin_PROGRAMS)'; for p in $$list; do \
238     f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
239     echo " rm -f $(DESTDIR)$(bindir)/$$f"; \
240     rm -f $(DESTDIR)$(bindir)/$$f; \
241     done
242    
243     clean-binPROGRAMS:
244     @list='$(bin_PROGRAMS)'; for p in $$list; do \
245     f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
246     echo " rm -f $$p $$f"; \
247     rm -f $$p $$f ; \
248     done
249     linuxsampler$(EXEEXT): $(linuxsampler_OBJECTS) $(linuxsampler_DEPENDENCIES)
250     @rm -f linuxsampler$(EXEEXT)
251     $(CXXLINK) $(linuxsampler_LDFLAGS) $(linuxsampler_OBJECTS) $(linuxsampler_LDADD) $(LIBS)
252    
253     mostlyclean-compile:
254     -rm -f *.$(OBJEXT) core *.core
255    
256     distclean-compile:
257     -rm -f *.tab.c
258    
259 schoenebeck 53 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Sampler.Plo@am__quote@
260 schoenebeck 9 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linuxsampler.Po@am__quote@
261    
262     distclean-depend:
263     -rm -rf ./$(DEPDIR)
264    
265     .cpp.o:
266     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
267     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
268     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
269     $(CXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
270    
271     .cpp.obj:
272     @AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
273     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
274     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
275     $(CXXCOMPILE) -c -o $@ `cygpath -w $<`
276    
277     .cpp.lo:
278     @AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
279     @AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@
280     @AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
281     $(LTCXXCOMPILE) -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<
282     CXXDEPMODE = @CXXDEPMODE@
283    
284     mostlyclean-libtool:
285     -rm -f *.lo
286    
287     clean-libtool:
288     -rm -rf .libs _libs
289    
290     distclean-libtool:
291     -rm -f libtool
292     uninstall-info-am:
293    
294 schoenebeck 35 # This directory's subdirectories are mostly independent; you can cd
295     # into them and run `make' without going through this Makefile.
296     # To change the values of `make' variables: instead of editing Makefiles,
297     # (1) if the variable is set in `config.status', edit `config.status'
298     # (which will cause the Makefiles to be regenerated when you run `make');
299     # (2) otherwise, pass the desired values on the `make' command line.
300     $(RECURSIVE_TARGETS):
301     @set fnord $$MAKEFLAGS; amf=$$2; \
302     dot_seen=no; \
303     target=`echo $@ | sed s/-recursive//`; \
304     list='$(SUBDIRS)'; for subdir in $$list; do \
305     echo "Making $$target in $$subdir"; \
306     if test "$$subdir" = "."; then \
307     dot_seen=yes; \
308     local_target="$$target-am"; \
309     else \
310     local_target="$$target"; \
311     fi; \
312     (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
313     || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
314     done; \
315     if test "$$dot_seen" = "no"; then \
316     $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
317     fi; test -z "$$fail"
318    
319     mostlyclean-recursive clean-recursive distclean-recursive \
320     maintainer-clean-recursive:
321     @set fnord $$MAKEFLAGS; amf=$$2; \
322     dot_seen=no; \
323     case "$@" in \
324     distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
325     *) list='$(SUBDIRS)' ;; \
326     esac; \
327     rev=''; for subdir in $$list; do \
328     if test "$$subdir" = "."; then :; else \
329     rev="$$subdir $$rev"; \
330     fi; \
331     done; \
332     rev="$$rev ."; \
333     target=`echo $@ | sed s/-recursive//`; \
334     for subdir in $$rev; do \
335     echo "Making $$target in $$subdir"; \
336     if test "$$subdir" = "."; then \
337     local_target="$$target-am"; \
338     else \
339     local_target="$$target"; \
340     fi; \
341     (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
342     || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
343     done && test -z "$$fail"
344     tags-recursive:
345     list='$(SUBDIRS)'; for subdir in $$list; do \
346     test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
347     done
348    
349 schoenebeck 9 ETAGS = etags
350     ETAGSFLAGS =
351    
352     tags: TAGS
353    
354     ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
355     list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
356     unique=`for i in $$list; do \
357     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
358     done | \
359     $(AWK) ' { files[$$0] = 1; } \
360     END { for (i in files) print i; }'`; \
361     mkid -fID $$unique
362    
363 schoenebeck 35 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
364 schoenebeck 9 $(TAGS_FILES) $(LISP)
365     tags=; \
366     here=`pwd`; \
367 schoenebeck 35 list='$(SUBDIRS)'; for subdir in $$list; do \
368     if test "$$subdir" = .; then :; else \
369     test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
370     fi; \
371     done; \
372 schoenebeck 9 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
373     unique=`for i in $$list; do \
374     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
375     done | \
376     $(AWK) ' { files[$$0] = 1; } \
377     END { for (i in files) print i; }'`; \
378     test -z "$(ETAGS_ARGS)$$tags$$unique" \
379     || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
380     $$tags $$unique
381    
382     GTAGS:
383     here=`$(am__cd) $(top_builddir) && pwd` \
384     && cd $(top_srcdir) \
385     && gtags -i $(GTAGS_ARGS) $$here
386    
387     distclean-tags:
388     -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH
389     DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
390    
391     top_distdir = ..
392     distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
393    
394     distdir: $(DISTFILES)
395     @list='$(DISTFILES)'; for file in $$list; do \
396     if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
397     dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
398     if test "$$dir" != "$$file" && test "$$dir" != "."; then \
399     dir="/$$dir"; \
400     $(mkinstalldirs) "$(distdir)$$dir"; \
401     else \
402     dir=''; \
403     fi; \
404     if test -d $$d/$$file; then \
405     if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
406     cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
407     fi; \
408     cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
409     else \
410     test -f $(distdir)/$$file \
411     || cp -p $$d/$$file $(distdir)/$$file \
412     || exit 1; \
413     fi; \
414     done
415 schoenebeck 35 list='$(SUBDIRS)'; for subdir in $$list; do \
416     if test "$$subdir" = .; then :; else \
417     test -d $(distdir)/$$subdir \
418     || mkdir $(distdir)/$$subdir \
419     || exit 1; \
420     (cd $$subdir && \
421     $(MAKE) $(AM_MAKEFLAGS) \
422     top_distdir="$(top_distdir)" \
423     distdir=../$(distdir)/$$subdir \
424     distdir) \
425     || exit 1; \
426     fi; \
427     done
428 schoenebeck 9 check-am: all-am
429 schoenebeck 35 check: check-recursive
430 schoenebeck 53 all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
431 schoenebeck 35 installdirs: installdirs-recursive
432     installdirs-am:
433 schoenebeck 53 $(mkinstalldirs) $(DESTDIR)$(pkglibdir) $(DESTDIR)$(bindir)
434 schoenebeck 9
435 schoenebeck 35 install: install-recursive
436     install-exec: install-exec-recursive
437     install-data: install-data-recursive
438     uninstall: uninstall-recursive
439 schoenebeck 9
440     install-am: all-am
441     @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
442    
443 schoenebeck 35 installcheck: installcheck-recursive
444 schoenebeck 9 install-strip:
445     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
446     INSTALL_STRIP_FLAG=-s \
447     `test -z '$(STRIP)' || \
448     echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
449     mostlyclean-generic:
450    
451     clean-generic:
452    
453     distclean-generic:
454     -rm -f Makefile $(CONFIG_CLEAN_FILES)
455    
456     maintainer-clean-generic:
457     @echo "This command is intended for maintainers to use"
458     @echo "it deletes files that may require special tools to rebuild."
459 schoenebeck 35 clean: clean-recursive
460 schoenebeck 9
461 schoenebeck 53 clean-am: clean-binPROGRAMS clean-generic clean-libtool \
462     clean-pkglibLTLIBRARIES mostlyclean-am
463 schoenebeck 9
464 schoenebeck 35 distclean: distclean-recursive
465 schoenebeck 9
466     distclean-am: clean-am distclean-compile distclean-depend \
467     distclean-generic distclean-libtool distclean-tags
468    
469 schoenebeck 35 dvi: dvi-recursive
470 schoenebeck 9
471     dvi-am:
472    
473 schoenebeck 35 info: info-recursive
474 schoenebeck 9
475     info-am:
476    
477     install-data-am:
478    
479 schoenebeck 53 install-exec-am: install-binPROGRAMS install-pkglibLTLIBRARIES
480 schoenebeck 9
481 schoenebeck 35 install-info: install-info-recursive
482 schoenebeck 9
483     install-man:
484    
485     installcheck-am:
486    
487 schoenebeck 35 maintainer-clean: maintainer-clean-recursive
488 schoenebeck 9
489     maintainer-clean-am: distclean-am maintainer-clean-generic
490    
491 schoenebeck 35 mostlyclean: mostlyclean-recursive
492 schoenebeck 9
493     mostlyclean-am: mostlyclean-compile mostlyclean-generic \
494     mostlyclean-libtool
495    
496     uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
497 schoenebeck 53 uninstall-pkglibLTLIBRARIES
498 schoenebeck 9
499 schoenebeck 35 uninstall-info: uninstall-info-recursive
500 schoenebeck 9
501 schoenebeck 35 .PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \
502 schoenebeck 53 clean-binPROGRAMS clean-generic clean-libtool \
503     clean-pkglibLTLIBRARIES clean-recursive distclean \
504     distclean-compile distclean-depend distclean-generic \
505     distclean-libtool distclean-recursive distclean-tags distdir \
506     dvi dvi-am dvi-recursive info info-am info-recursive install \
507     install-am install-binPROGRAMS install-data install-data-am \
508 schoenebeck 35 install-data-recursive install-exec install-exec-am \
509     install-exec-recursive install-info install-info-am \
510 schoenebeck 53 install-info-recursive install-man install-pkglibLTLIBRARIES \
511 schoenebeck 35 install-recursive install-strip installcheck installcheck-am \
512     installdirs installdirs-am installdirs-recursive \
513     maintainer-clean maintainer-clean-generic \
514     maintainer-clean-recursive mostlyclean mostlyclean-compile \
515     mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \
516     tags tags-recursive uninstall uninstall-am \
517     uninstall-binPROGRAMS uninstall-info-am \
518 schoenebeck 53 uninstall-info-recursive uninstall-pkglibLTLIBRARIES \
519 schoenebeck 35 uninstall-recursive
520    
521 schoenebeck 9 # Tell versions [3.59,3.63) of GNU make to not export all variables.
522     # Otherwise a system limit (for SysV at least) may be exceeded.
523     .NOEXPORT:

  ViewVC Help
Powered by ViewVC