1# Makefile.in generated automatically by automake 1.3 from Makefile.am
2
3# Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4# This Makefile.in is free software; the Free Software Foundation
5# gives unlimited permission to copy and/or distribute it,
6# with or without modifications, as long as this notice is preserved.
7
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11# PARTICULAR PURPOSE.
12
13# 
14#  $Id: Makefile.in,v 1.1.1.1 2008/10/15 03:30:39 james26_jang Exp $
15# 
16#  Copyright (C) 1997 Lars Fenneberg
17# 
18#  See the file COPYRIGHT for the respective terms and conditions. 
19#  If the file is missing contact me at lf@elemental.net 
20#  and I'll send you a copy.
21# 
22#
23
24
25SHELL = /bin/sh
26
27srcdir = @srcdir@
28top_srcdir = @top_srcdir@
29VPATH = @srcdir@
30prefix = @prefix@
31exec_prefix = @exec_prefix@
32
33bindir = @bindir@
34sbindir = @sbindir@
35libexecdir = @libexecdir@
36datadir = @datadir@
37sysconfdir = @sysconfdir@
38sharedstatedir = @sharedstatedir@
39localstatedir = @localstatedir@
40libdir = @libdir@
41infodir = @infodir@
42mandir = @mandir@
43includedir = @includedir@
44oldincludedir = /usr/include
45
46DISTDIR =
47
48pkgdatadir = $(datadir)/@PACKAGE@
49pkglibdir = $(libdir)/@PACKAGE@
50pkgincludedir = $(includedir)/@PACKAGE@
51
52top_builddir = ..
53
54ACLOCAL = @ACLOCAL@
55AUTOCONF = @AUTOCONF@
56AUTOMAKE = @AUTOMAKE@
57AUTOHEADER = @AUTOHEADER@
58
59INSTALL = @INSTALL@
60INSTALL_PROGRAM = @INSTALL_PROGRAM@
61INSTALL_DATA = @INSTALL_DATA@
62INSTALL_SCRIPT = @INSTALL_SCRIPT@
63transform = @program_transform_name@
64
65NORMAL_INSTALL = :
66PRE_INSTALL = :
67POST_INSTALL = :
68NORMAL_UNINSTALL = :
69PRE_UNINSTALL = :
70POST_UNINSTALL = :
71build_alias = @build_alias@
72build_triplet = @build@
73host_alias = @host_alias@
74host_triplet = @host@
75target_alias = @target_alias@
76target_triplet = @target@
77AR = @AR@
78CC = @CC@
79LD = @LD@
80LIBTOOL = @LIBTOOL@
81LIBVERSION = @LIBVERSION@
82LN_S = @LN_S@
83LTLIBOBJS = @LTLIBOBJS@
84MAKEINFO = @MAKEINFO@
85NM = @NM@
86PACKAGE = @PACKAGE@
87RANLIB = @RANLIB@
88RC_LOG_FACILITY = @RC_LOG_FACILITY@
89RC_SECURE_PATH = @RC_SECURE_PATH@
90VERSION = @VERSION@
91pkgsysconfdir = @pkgsysconfdir@
92
93AUTOMAKE_OPTIONS = foreign
94
95noinst_HEADERS = pathnames.h messages.h includes.h
96include_HEADERS = radiusclient.h
97mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
98CONFIG_HEADER = ../config.h
99CONFIG_CLEAN_FILES = 
100HEADERS =  $(include_HEADERS) $(noinst_HEADERS)
101
102DIST_COMMON =  Makefile.am Makefile.in
103
104
105DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
106
107TAR = tar
108GZIP = --best
109all: Makefile $(HEADERS)
110
111.SUFFIXES:
112$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
113	cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps include/Makefile
114
115Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
116	cd $(top_builddir) \
117	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
118
119
120install-includeHEADERS: $(include_HEADERS)
121	@$(NORMAL_INSTALL)
122	$(mkinstalldirs) $(DESTDIR)$(includedir)
123	@list='$(include_HEADERS)'; for p in $$list; do \
124	  if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
125	  echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/$$p"; \
126	  $(INSTALL_DATA) $$d$$p $(DESTDIR)$(includedir)/$$p; \
127	done
128
129uninstall-includeHEADERS:
130	@$(NORMAL_UNINSTALL)
131	list='$(include_HEADERS)'; for p in $$list; do \
132	  rm -f $(DESTDIR)$(includedir)/$$p; \
133	done
134
135tags: TAGS
136
137ID: $(HEADERS) $(SOURCES) $(LISP)
138	here=`pwd` && cd $(srcdir) \
139	  && mkid -f$$here/ID $(SOURCES) $(HEADERS) $(LISP)
140
141TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP)
142	tags=; \
143	here=`pwd`; \
144	list='$(SOURCES) $(HEADERS)'; \
145	unique=`for i in $$list; do echo $$i; done | \
146	  awk '    { files[$$0] = 1; } \
147	       END { for (i in files) print i; }'`; \
148	test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
149	  || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags  $$unique $(LISP) -o $$here/TAGS)
150
151mostlyclean-tags:
152
153clean-tags:
154
155distclean-tags:
156	-rm -f TAGS ID
157
158maintainer-clean-tags:
159
160distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
161
162subdir = include
163
164distdir: $(DISTFILES)
165	@for file in $(DISTFILES); do \
166	  d=$(srcdir); \
167	  test -f $(distdir)/$$file \
168	  || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
169	  || cp -p $$d/$$file $(distdir)/$$file; \
170	done
171info:
172dvi:
173check: all
174	$(MAKE)
175installcheck:
176install-exec: 
177	@$(NORMAL_INSTALL)
178
179install-data: install-includeHEADERS
180	@$(NORMAL_INSTALL)
181
182install: install-exec install-data all
183	@:
184
185uninstall: uninstall-includeHEADERS
186
187install-strip:
188	$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install
189installdirs:
190	$(mkinstalldirs)  $(DATADIR)$(includedir)
191
192
193mostlyclean-generic:
194	-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
195
196clean-generic:
197	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
198
199distclean-generic:
200	-rm -f Makefile $(DISTCLEANFILES)
201	-rm -f config.cache config.log stamp-h stamp-h[0-9]*
202	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
203
204maintainer-clean-generic:
205	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
206	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
207mostlyclean:  mostlyclean-tags mostlyclean-generic
208
209clean:  clean-tags clean-generic mostlyclean
210
211distclean:  distclean-tags distclean-generic clean
212	-rm -f config.status
213	-rm -f libtool
214
215maintainer-clean:  maintainer-clean-tags maintainer-clean-generic \
216		distclean
217	@echo "This command is intended for maintainers to use;"
218	@echo "it deletes files that may require special tools to rebuild."
219
220.PHONY: uninstall-includeHEADERS install-includeHEADERS tags \
221mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
222distdir info dvi installcheck install-exec install-data install \
223uninstall all installdirs mostlyclean-generic distclean-generic \
224clean-generic maintainer-clean-generic clean mostlyclean distclean \
225maintainer-clean
226
227
228# Tell versions [3.59,3.63) of GNU make to not export all variables.
229# Otherwise a system limit (for SysV at least) may be exceeded.
230.NOEXPORT:
231