~ubuntu-branches/ubuntu/trusty/rsyslog/trusty

« back to all changes in this revision

Viewing changes to java/Makefile.in

  • Committer: Dave Walker (Daviey)
  • Author(s): Scott Moser
  • Date: 2011-06-17 20:59:38 UTC
  • mfrom: (36.1.8 oneiric.merge)
  • Revision ID: davewalker@ubuntu.com-20110617205938-pfkizxz2wsgzi2ot
Tags: 5.8.1-1ubuntu1
* Resynchronise with Debian (LP: #794230).  Remaining changes:
  - Run as rsyslog:rsyslog, set $FileOwner to syslog
  - Replace init script with debian/rsyslog.upstart.
  - debian/rsyslog.logrotate: Use reload command to restart rsyslog
  - debian/rsyslog.conf: enable $RepeatedMsgReduction 
    to avoid bloating the syslog file (LP #453444)
  - Add debian/rsyslog.dmesg.upstart to save initial dmesg into a file.
    Install it in debian/rules.
  - debian/50-default.conf: set of default rules for syslog (forwarded to
    Debian #603160). remove file in postrm on purge. manage with ucf.
  - debian/rules: build with LDFLAGS=""
* Dropped:
  - debian/control: Bump build-dependency on debhelper
    debian now depends on dh >= 8
* New upstream release.
* Bump Standards-Version to 3.9.2. No further changes.
* Enable and install impstats module. (Closes: #620114)
* Update logcheck rule. (Closes: #616659)
* debian/rsyslog.init: Set correct compat level (5).
* The way rsyslog processes SIGHUP has changed. It no longer does a reload
  of its configuration, but simply closes all open files. To apply a changed
  configuration, rsyslogd needs to be restarted now.
  - Drop "reload" action from debian/rsyslog.init, map "force-reload" to
    "restart". (Closes: #580897)
  - Add "rotate" action to debian/rsyslog.init which sends SIGHUP to
    rsyslogd. Use that in debian/rsyslog.logrotate. (Closes: #626365)
  - Update debian/rsyslog-mysql.postinst and rsyslog-pgsql.postinst to use
    restart instead of reload.
  - Add a NEWS file explaining the changed SIGHUP handling.
* New upstream stable release.
* New upstream release.
  - Properly handle ANSI SQL strings in ompgsql. (Closes: #600479)
* New upstream release.
* debian/patches/02-pmaixforwardedfrom_type_nokeep.patch
  - Remove, merged upstream.
* debian/patches/03-epoll_create1-fallback.patch
  - Remove, merged upstream.
* debian/patches/03-epoll_create1-fallback.patch
  - If epoll_create1() is not available during runtime, fall back to
    epoll_create(). This fixes remote syslog when runnig rsyslog on a
    lenny kernel. (Closes: #617996)
* New upstream release.
* debian/rsyslog.links
  - Create symlink for rsyslog.service in multi-user.target.wants so rsyslog
    is enabled by default when using systemd.
* debian/patches/02-pmaixforwardedfrom_type_nokeep.patch
  - Fix build failure in aixforwardedfrom parser module by setting the
    module type to NOKEEP.
* debian/rsyslog.preinst
  - Remove old rsyslog.socket symlink from sockets.target.wants on upgrades
    as rsyslog uses syslog.socket now which is provided by systemd.
* debian/rsyslog.install
  - Stop installing rsyslog.socket.
* New upstream release.
* New upstream release.
  - Fix regression in imuxsock plugin which did no longer sanitize received
    messages. This makes 02-cleanup-trailing-lf.patch obsolete and also
    fixes the SQL syntax errors in the mysql output if the input contained
    NUL bytes. Closes: #614061
* Enable and install omprog output plugin. Closes: #552095
* Improve package description. Closes: #612948
  Thanks to Justin B Rye for the patch.
* debian/patches/02-cleanup-trailing-lf.patch
  - Fix regression in imuxsock plugin which did not remove a trailing LF
    anymore. Patch cherry-picked from upstream Git. Closes: #612829
* New upstream release.
* Enable and install parser modules.
* New upstream release.
* Upload to unstable.
* debian/patches/02-typo_fix_equation_sign.patch
  - Removed, merged upstream.
* debian/patches/03-atomic_operations.patch
  - Removed, merged upstream.
* debian/patches/03-atomic_operations.patch
  - Fix build failures on platforms which don't have 64 bit atomic
    operations. Patch cherry-picked from upstream Git. Closes: #600930
* New upstream development release.
* Remove patches, merged upstream
  - debian/patches/02-install_also_rsyslog_socket.patch
  - debian/patches/02-tls_loop_fix.patch
* debian/patches/02-typo_fix_equation_sign.patch
  - Fix small typo ("equation sign"). Closes: #575589
* debian/rsyslog.postinst
  - Remove pre-lenny migration code to rotate old log files from sysklogd.
* New upstream development release.
* debian/rsyslog.install
  - Install omruleset.so plugin: http://www.rsyslog.com/doc/omruleset.html
* debian/rsyslog.default
  - Start rsyslogd with native -c5 mode.
* Install systemd unit files which allow to run rsyslog in socket activation
  mode when systemd is used.
* debian/patches/02-install_also_rsyslog_socket.patch
  - When enabling rsyslog.service also enable rsyslog.socket. Patch
    cherry-picked from upstream Git.
* Bump debhelper compatibility level to 8. Update Build-Depends accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
 
2
# @configure_input@
 
3
 
 
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
 
5
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
 
6
# Inc.
 
7
# This Makefile.in is free software; the Free Software Foundation
 
8
# gives unlimited permission to copy and/or distribute it,
 
9
# with or without modifications, as long as this notice is preserved.
 
10
 
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
 
13
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
 
14
# PARTICULAR PURPOSE.
 
15
 
 
16
@SET_MAKE@
 
17
 
 
18
# very rough support for compiling the java components of rsyslog
 
19
# Some usage notes: you need to use the Sun JDK compiler (jdk-devel)
 
20
# with this. At least it didn't work for me with the eclipse compiler.
 
21
# There is no real installation support. If you intend to run a program,
 
22
# change to the ./java subdirectory and issue
 
23
# java -cp . <class>
 
24
# e.g.: java -cp . com.rsyslog.gui.diaggui.DiagGUI
 
25
# or any equivalent command.
 
26
#
 
27
# I am very glad to hear suggestions about how to improve this part
 
28
# of the build system. -- rgerhards, 2009-08-27
 
29
VPATH = @srcdir@
 
30
pkgdatadir = $(datadir)/@PACKAGE@
 
31
pkgincludedir = $(includedir)/@PACKAGE@
 
32
pkglibdir = $(libdir)/@PACKAGE@
 
33
pkglibexecdir = $(libexecdir)/@PACKAGE@
 
34
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
 
35
install_sh_DATA = $(install_sh) -c -m 644
 
36
install_sh_PROGRAM = $(install_sh) -c
 
37
install_sh_SCRIPT = $(install_sh) -c
 
38
INSTALL_HEADER = $(INSTALL_DATA)
 
39
transform = $(program_transform_name)
 
40
NORMAL_INSTALL = :
 
41
PRE_INSTALL = :
 
42
POST_INSTALL = :
 
43
NORMAL_UNINSTALL = :
 
44
PRE_UNINSTALL = :
 
45
POST_UNINSTALL = :
 
46
build_triplet = @build@
 
47
host_triplet = @host@
 
48
subdir = java
 
49
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 
50
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
51
am__aclocal_m4_deps = $(top_srcdir)/m4/atomic_operations.m4 \
 
52
        $(top_srcdir)/m4/atomic_operations_64bit.m4 \
 
53
        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
 
54
        $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
 
55
        $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
 
56
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
 
57
        $(ACLOCAL_M4)
 
58
mkinstalldirs = $(install_sh) -d
 
59
CONFIG_HEADER = $(top_builddir)/config.h
 
60
CONFIG_CLEAN_FILES =
 
61
CONFIG_CLEAN_VPATH_FILES =
 
62
AM_V_GEN = $(am__v_GEN_$(V))
 
63
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
 
64
am__v_GEN_0 = @echo "  GEN   " $@;
 
65
AM_V_at = $(am__v_at_$(V))
 
66
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
 
67
am__v_at_0 = @
 
68
SOURCES =
 
69
DIST_SOURCES =
 
70
JAVAC = javac
 
71
am__installdirs = "$(DESTDIR)$(javadir)"
 
72
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
73
ACLOCAL = @ACLOCAL@
 
74
AMTAR = @AMTAR@
 
75
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
 
76
AR = @AR@
 
77
AUTOCONF = @AUTOCONF@
 
78
AUTOHEADER = @AUTOHEADER@
 
79
AUTOMAKE = @AUTOMAKE@
 
80
AWK = @AWK@
 
81
CC = @CC@
 
82
CCDEPMODE = @CCDEPMODE@
 
83
CFLAGS = @CFLAGS@
 
84
CPP = @CPP@
 
85
CPPFLAGS = @CPPFLAGS@
 
86
CYGPATH_W = @CYGPATH_W@
 
87
DEFS = @DEFS@
 
88
DEPDIR = @DEPDIR@
 
89
DL_LIBS = @DL_LIBS@
 
90
DSYMUTIL = @DSYMUTIL@
 
91
DUMPBIN = @DUMPBIN@
 
92
ECHO_C = @ECHO_C@
 
93
ECHO_N = @ECHO_N@
 
94
ECHO_T = @ECHO_T@
 
95
EGREP = @EGREP@
 
96
EXEEXT = @EXEEXT@
 
97
FGREP = @FGREP@
 
98
GNUTLS_CFLAGS = @GNUTLS_CFLAGS@
 
99
GNUTLS_LIBS = @GNUTLS_LIBS@
 
100
GREP = @GREP@
 
101
GSS_LIBS = @GSS_LIBS@
 
102
HAVE_JAVAC = @HAVE_JAVAC@
 
103
HAVE_MYSQL_CONFIG = @HAVE_MYSQL_CONFIG@
 
104
HAVE_ORACLE_CONFIG = @HAVE_ORACLE_CONFIG@
 
105
HAVE_PGSQL_CONFIG = @HAVE_PGSQL_CONFIG@
 
106
IMUDP_LIBS = @IMUDP_LIBS@
 
107
INSTALL = @INSTALL@
 
108
INSTALL_DATA = @INSTALL_DATA@
 
109
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
110
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
111
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
 
112
LD = @LD@
 
113
LDFLAGS = @LDFLAGS@
 
114
LIBDBI_CFLAGS = @LIBDBI_CFLAGS@
 
115
LIBDBI_LIBS = @LIBDBI_LIBS@
 
116
LIBLOGGING_CFLAGS = @LIBLOGGING_CFLAGS@
 
117
LIBLOGGING_LIBS = @LIBLOGGING_LIBS@
 
118
LIBOBJS = @LIBOBJS@
 
119
LIBS = @LIBS@
 
120
LIBTOOL = @LIBTOOL@
 
121
LIPO = @LIPO@
 
122
LN_S = @LN_S@
 
123
LTLIBOBJS = @LTLIBOBJS@
 
124
MAKEINFO = @MAKEINFO@
 
125
MKDIR_P = @MKDIR_P@
 
126
MYSQL_CFLAGS = @MYSQL_CFLAGS@
 
127
MYSQL_LIBS = @MYSQL_LIBS@
 
128
NM = @NM@
 
129
NMEDIT = @NMEDIT@
 
130
OBJDUMP = @OBJDUMP@
 
131
OBJEXT = @OBJEXT@
 
132
ORACLE_CFLAGS = @ORACLE_CFLAGS@
 
133
ORACLE_LIBS = @ORACLE_LIBS@
 
134
OTOOL = @OTOOL@
 
135
OTOOL64 = @OTOOL64@
 
136
PACKAGE = @PACKAGE@
 
137
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
 
138
PACKAGE_NAME = @PACKAGE_NAME@
 
139
PACKAGE_STRING = @PACKAGE_STRING@
 
140
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
141
PACKAGE_URL = @PACKAGE_URL@
 
142
PACKAGE_VERSION = @PACKAGE_VERSION@
 
143
PATH_SEPARATOR = @PATH_SEPARATOR@
 
144
PGSQL_CFLAGS = @PGSQL_CFLAGS@
 
145
PGSQL_LIBS = @PGSQL_LIBS@
 
146
PKG_CONFIG = @PKG_CONFIG@
 
147
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
148
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
 
149
PTHREADS_CFLAGS = @PTHREADS_CFLAGS@
 
150
PTHREADS_LIBS = @PTHREADS_LIBS@
 
151
RANLIB = @RANLIB@
 
152
RELP_CFLAGS = @RELP_CFLAGS@
 
153
RELP_LIBS = @RELP_LIBS@
 
154
RSRT_CFLAGS = @RSRT_CFLAGS@
 
155
RSRT_LIBS = @RSRT_LIBS@
 
156
RT_LIBS = @RT_LIBS@
 
157
SED = @SED@
 
158
SET_MAKE = @SET_MAKE@
 
159
SHELL = @SHELL@
 
160
SNMP_CFLAGS = @SNMP_CFLAGS@
 
161
SNMP_LIBS = @SNMP_LIBS@
 
162
SOL_LIBS = @SOL_LIBS@
 
163
STRIP = @STRIP@
 
164
UDPSPOOF_CFLAGS = @UDPSPOOF_CFLAGS@
 
165
UDPSPOOF_LIBS = @UDPSPOOF_LIBS@
 
166
VERSION = @VERSION@
 
167
ZLIB_LIBS = @ZLIB_LIBS@
 
168
abs_builddir = @abs_builddir@
 
169
abs_srcdir = @abs_srcdir@
 
170
abs_top_builddir = @abs_top_builddir@
 
171
abs_top_srcdir = @abs_top_srcdir@
 
172
ac_ct_CC = @ac_ct_CC@
 
173
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
 
174
am__include = @am__include@
 
175
am__leading_dot = @am__leading_dot@
 
176
am__quote = @am__quote@
 
177
am__tar = @am__tar@
 
178
am__untar = @am__untar@
 
179
bindir = @bindir@
 
180
build = @build@
 
181
build_alias = @build_alias@
 
182
build_cpu = @build_cpu@
 
183
build_os = @build_os@
 
184
build_vendor = @build_vendor@
 
185
builddir = @builddir@
 
186
datadir = @datadir@
 
187
datarootdir = @datarootdir@
 
188
docdir = @docdir@
 
189
dvidir = @dvidir@
 
190
exec_prefix = @exec_prefix@
 
191
have_valgrind = @have_valgrind@
 
192
host = @host@
 
193
host_alias = @host_alias@
 
194
host_cpu = @host_cpu@
 
195
host_os = @host_os@
 
196
host_vendor = @host_vendor@
 
197
htmldir = @htmldir@
 
198
includedir = @includedir@
 
199
infodir = @infodir@
 
200
install_sh = @install_sh@
 
201
libdir = @libdir@
 
202
libexecdir = @libexecdir@
 
203
localedir = @localedir@
 
204
localstatedir = @localstatedir@
 
205
mandir = @mandir@
 
206
mkdir_p = @mkdir_p@
 
207
moddirs = @moddirs@
 
208
oldincludedir = @oldincludedir@
 
209
pdfdir = @pdfdir@
 
210
prefix = @prefix@
 
211
program_transform_name = @program_transform_name@
 
212
psdir = @psdir@
 
213
sbindir = @sbindir@
 
214
sharedstatedir = @sharedstatedir@
 
215
srcdir = @srcdir@
 
216
sysconfdir = @sysconfdir@
 
217
systemdsystemunitdir = @systemdsystemunitdir@
 
218
target_alias = @target_alias@
 
219
top_build_prefix = @top_build_prefix@
 
220
top_builddir = @top_builddir@
 
221
top_srcdir = @top_srcdir@
 
222
javadir = $(top_builddir)/java
 
223
JAVAROOT = $(javadir)
 
224
# I don't know why CLASSPATH_ENV works this way, but at least it works...
 
225
CLASSPATH_ENV = CLASSPATH=$(javadir):$$CLASSPATH
 
226
JAVA_SOURCE_FILES = \
 
227
        com/rsyslog/lib/DiagSess.java \
 
228
        com/rsyslog/lib/SyslogMessage.java \
 
229
        com/rsyslog/lib/SyslogMsgConsumer.java \
 
230
        com/rsyslog/lib/SyslogTrafficGenerator.java \
 
231
        com/rsyslog/lib/SyslogSender.java \
 
232
        com/rsyslog/lib/UDPSyslogSender.java \
 
233
        com/rsyslog/diag/DiagTalker.java \
 
234
        com/rsyslog/gui/simpServ/simpServ.java \
 
235
        com/rsyslog/gui/simpServ/simpServConsumer.java \
 
236
        com/rsyslog/gui/msggen/MsgGen.java \
 
237
        com/rsyslog/gui/diaggui/Counters.java \
 
238
        com/rsyslog/gui/diaggui/DiagGUI.java
 
239
 
 
240
java_JAVA = $(JAVA_SOURCE_FILES)
 
241
dist_java = $(JAVA_SOURCE_FILES)
 
242
all: all-am
 
243
 
 
244
.SUFFIXES:
 
245
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
246
        @for dep in $?; do \
 
247
          case '$(am__configure_deps)' in \
 
248
            *$$dep*) \
 
249
              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
 
250
                && { if test -f $@; then exit 0; else break; fi; }; \
 
251
              exit 1;; \
 
252
          esac; \
 
253
        done; \
 
254
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu java/Makefile'; \
 
255
        $(am__cd) $(top_srcdir) && \
 
256
          $(AUTOMAKE) --gnu java/Makefile
 
257
.PRECIOUS: Makefile
 
258
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
 
259
        @case '$?' in \
 
260
          *config.status*) \
 
261
            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
 
262
          *) \
 
263
            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
 
264
            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
 
265
        esac;
 
266
 
 
267
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
 
268
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
269
 
 
270
$(top_srcdir)/configure:  $(am__configure_deps)
 
271
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
272
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
273
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
 
274
$(am__aclocal_m4_deps):
 
275
 
 
276
mostlyclean-libtool:
 
277
        -rm -f *.lo
 
278
 
 
279
clean-libtool:
 
280
        -rm -rf .libs _libs
 
281
 
 
282
classjava.stamp: $(java_JAVA)
 
283
        @list1='$?'; list2=; if test -n "$$list1"; then \
 
284
          for p in $$list1; do \
 
285
            if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
 
286
            list2="$$list2 $$d$$p"; \
 
287
          done; \
 
288
          echo '$(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) '"$$list2"; \
 
289
          $(CLASSPATH_ENV) $(JAVAC) -d $(JAVAROOT) $(AM_JAVACFLAGS) $(JAVACFLAGS) $$list2; \
 
290
        else :; fi
 
291
        echo timestamp > classjava.stamp
 
292
install-javaJAVA: classjava.stamp
 
293
        @$(NORMAL_INSTALL)
 
294
        test -z "$(javadir)" || $(MKDIR_P) "$(DESTDIR)$(javadir)"
 
295
        @test -n "$(java_JAVA)" && test -n "$(javadir)" || exit 0; \
 
296
        set x *.class; shift; test "$$1" != "*.class" || exit 0; \
 
297
        echo " $(INSTALL_DATA)" "$$@" "'$(DESTDIR)$(javadir)/$$p'"; \
 
298
        $(INSTALL_DATA) "$$@" "$(DESTDIR)$(javadir)"
 
299
 
 
300
uninstall-javaJAVA:
 
301
        @$(NORMAL_UNINSTALL)
 
302
        @test -n "$(java_JAVA)" && test -n "$(javadir)" || exit 0; \
 
303
        set x *.class; shift; test "$$1" != "*.class" || exit 0; \
 
304
        echo " ( cd '$(DESTDIR)$(javadir)' && rm -f" "$$@" ")"; \
 
305
        cd "$(DESTDIR)$(javadir)" && rm -f "$$@"
 
306
 
 
307
clean-javaJAVA:
 
308
        -rm -f *.class classjava.stamp
 
309
tags: TAGS
 
310
TAGS:
 
311
 
 
312
ctags: CTAGS
 
313
CTAGS:
 
314
 
 
315
 
 
316
distdir: $(DISTFILES)
 
317
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
318
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
 
319
        list='$(DISTFILES)'; \
 
320
          dist_files=`for file in $$list; do echo $$file; done | \
 
321
          sed -e "s|^$$srcdirstrip/||;t" \
 
322
              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
 
323
        case $$dist_files in \
 
324
          */*) $(MKDIR_P) `echo "$$dist_files" | \
 
325
                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
 
326
                           sort -u` ;; \
 
327
        esac; \
 
328
        for file in $$dist_files; do \
 
329
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
 
330
          if test -d $$d/$$file; then \
 
331
            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
 
332
            if test -d "$(distdir)/$$file"; then \
 
333
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
334
            fi; \
 
335
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
 
336
              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
 
337
              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
 
338
            fi; \
 
339
            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
 
340
          else \
 
341
            test -f "$(distdir)/$$file" \
 
342
            || cp -p $$d/$$file "$(distdir)/$$file" \
 
343
            || exit 1; \
 
344
          fi; \
 
345
        done
 
346
check-am: all-am
 
347
check: check-am
 
348
all-am: Makefile classjava.stamp
 
349
installdirs:
 
350
        for dir in "$(DESTDIR)$(javadir)"; do \
 
351
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
 
352
        done
 
353
install: install-am
 
354
install-exec: install-exec-am
 
355
install-data: install-data-am
 
356
uninstall: uninstall-am
 
357
 
 
358
install-am: all-am
 
359
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
 
360
 
 
361
installcheck: installcheck-am
 
362
install-strip:
 
363
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
 
364
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
 
365
          `test -z '$(STRIP)' || \
 
366
            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
 
367
mostlyclean-generic:
 
368
 
 
369
clean-generic:
 
370
 
 
371
distclean-generic:
 
372
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
373
        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
 
374
 
 
375
maintainer-clean-generic:
 
376
        @echo "This command is intended for maintainers to use"
 
377
        @echo "it deletes files that may require special tools to rebuild."
 
378
clean: clean-am
 
379
 
 
380
clean-am: clean-generic clean-javaJAVA clean-libtool mostlyclean-am
 
381
 
 
382
distclean: distclean-am
 
383
        -rm -f Makefile
 
384
distclean-am: clean-am distclean-generic
 
385
 
 
386
dvi: dvi-am
 
387
 
 
388
dvi-am:
 
389
 
 
390
html: html-am
 
391
 
 
392
html-am:
 
393
 
 
394
info: info-am
 
395
 
 
396
info-am:
 
397
 
 
398
install-data-am: install-javaJAVA
 
399
 
 
400
install-dvi: install-dvi-am
 
401
 
 
402
install-dvi-am:
 
403
 
 
404
install-exec-am:
 
405
 
 
406
install-html: install-html-am
 
407
 
 
408
install-html-am:
 
409
 
 
410
install-info: install-info-am
 
411
 
 
412
install-info-am:
 
413
 
 
414
install-man:
 
415
 
 
416
install-pdf: install-pdf-am
 
417
 
 
418
install-pdf-am:
 
419
 
 
420
install-ps: install-ps-am
 
421
 
 
422
install-ps-am:
 
423
 
 
424
installcheck-am:
 
425
 
 
426
maintainer-clean: maintainer-clean-am
 
427
        -rm -f Makefile
 
428
maintainer-clean-am: distclean-am maintainer-clean-generic
 
429
 
 
430
mostlyclean: mostlyclean-am
 
431
 
 
432
mostlyclean-am: mostlyclean-generic mostlyclean-libtool
 
433
 
 
434
pdf: pdf-am
 
435
 
 
436
pdf-am:
 
437
 
 
438
ps: ps-am
 
439
 
 
440
ps-am:
 
441
 
 
442
uninstall-am: uninstall-javaJAVA
 
443
 
 
444
.MAKE: install-am install-strip
 
445
 
 
446
.PHONY: all all-am check check-am clean clean-generic clean-javaJAVA \
 
447
        clean-libtool distclean distclean-generic distclean-libtool \
 
448
        distdir dvi dvi-am html html-am info info-am install \
 
449
        install-am install-data install-data-am install-dvi \
 
450
        install-dvi-am install-exec install-exec-am install-html \
 
451
        install-html-am install-info install-info-am install-javaJAVA \
 
452
        install-man install-pdf install-pdf-am install-ps \
 
453
        install-ps-am install-strip installcheck installcheck-am \
 
454
        installdirs maintainer-clean maintainer-clean-generic \
 
455
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
 
456
        ps ps-am uninstall uninstall-am uninstall-javaJAVA
 
457
 
 
458
 
 
459
# Tell versions [3.59,3.63) of GNU make to not export all variables.
 
460
# Otherwise a system limit (for SysV at least) may be exceeded.
 
461
.NOEXPORT: