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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 35 - (show annotations) (download)
Fri Mar 5 13:46:15 2004 UTC (20 years ago) by schoenebeck
File size: 18306 byte(s)
* implemented parser for the LinuxSampler control protocol (LSCP) by using
  flex / bison (where src/network/lscp.l is the input file for lex / flex
  and src/network/lscp.y is the input file for yacc / bison), parser and
  scanner can be regenerated by 'make parser'
* implemented LSCP network server (only single threaded so far), LSCP
  server will be launched if LinuxSampler was started with "--server" flag,
  implemented the following LSCP commands so far: "LOAD INSTRUMENT", "GET
  CHANNEL VOICE_COUNT", "GET CHANNEL STREAM_COUNT", "GET CHANNEL
  BUFFER_FILL", "SET CHANNEL VOLUME" and "RESET CHANNEL"
* disk thread now started within the engine

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

  ViewVC Help
Powered by ViewVC