admesh 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/ext/admesh/admesh/AUTHORS +11 -0
  3. data/ext/admesh/admesh/COPYING +339 -0
  4. data/ext/admesh/admesh/ChangeLog +143 -0
  5. data/ext/admesh/admesh/ChangeLog.old +42 -0
  6. data/ext/admesh/admesh/INSTALL +14 -0
  7. data/ext/admesh/admesh/Makefile.am +62 -0
  8. data/ext/admesh/admesh/Makefile.in +1100 -0
  9. data/ext/admesh/admesh/README.md +115 -0
  10. data/ext/admesh/admesh/aclocal.m4 +1183 -0
  11. data/ext/admesh/admesh/admesh-doc.txt +475 -0
  12. data/ext/admesh/admesh/admesh.1 +173 -0
  13. data/ext/admesh/admesh/block.stl +86 -0
  14. data/ext/admesh/admesh/compile +347 -0
  15. data/ext/admesh/admesh/config.guess +1420 -0
  16. data/ext/admesh/admesh/config.h.in +65 -0
  17. data/ext/admesh/admesh/config.sub +1798 -0
  18. data/ext/admesh/admesh/configure +14671 -0
  19. data/ext/admesh/admesh/configure.ac +90 -0
  20. data/ext/admesh/admesh/depcomp +791 -0
  21. data/ext/admesh/admesh/install-sh +527 -0
  22. data/ext/admesh/admesh/libadmesh.pc.in +11 -0
  23. data/ext/admesh/admesh/ltmain.sh +9655 -0
  24. data/ext/admesh/admesh/m4/libtool.m4 +7992 -0
  25. data/ext/admesh/admesh/m4/ltoptions.m4 +384 -0
  26. data/ext/admesh/admesh/m4/ltsugar.m4 +123 -0
  27. data/ext/admesh/admesh/m4/ltversion.m4 +23 -0
  28. data/ext/admesh/admesh/m4/lt~obsolete.m4 +98 -0
  29. data/ext/admesh/admesh/missing +215 -0
  30. data/ext/admesh/admesh/src/admesh.c +425 -0
  31. data/ext/admesh/admesh/src/connect.c +971 -0
  32. data/ext/admesh/admesh/src/normals.c +333 -0
  33. data/ext/admesh/admesh/src/shared.c +262 -0
  34. data/ext/admesh/admesh/src/stl.h +201 -0
  35. data/ext/admesh/admesh/src/stl_io.c +479 -0
  36. data/ext/admesh/admesh/src/stlinit.c +377 -0
  37. data/ext/admesh/admesh/src/util.c +557 -0
  38. data/ext/admesh/extconf.rb +14 -0
  39. data/lib/admesh.rb +40 -0
  40. metadata +84 -0
@@ -0,0 +1,42 @@
1
+ Tue Aug 1 03:25:46 PDT 1995 Anthony Martin <amartin@engr.csulb.edu>
2
+
3
+ * Fix it so that big endian systems write a little endian file
4
+ Also, write null characters after the label in stl_write_binary
5
+
6
+ Tue Aug 1 03:25:46 PDT 1995 Anthony Martin <amartin@engr.csulb.edu>
7
+
8
+ * Change stl_fill_holes so that duplicate facets are not likely
9
+ to be generated. Should improve quality of filled holes.
10
+
11
+ Wed Aug 2 16:56:03 PDT 1995 Anthony Martin <amartin@engr.csulb.edu>
12
+
13
+ * Add support for generating shared vertices
14
+ * Move fclose(stl->fp) to stl_open()
15
+
16
+ Tue Oct 31 13:56:25 PST 1995 Anthony Martin <amartin@engr.csulb.edu>
17
+
18
+ * Don't use area any more to see whether or not the normal should
19
+ be calculated. Just go ahead and calculate the normal, and let the
20
+ code in stl_normalize vector() take care of the case of a normal
21
+ with zero area.
22
+ * Changes call to stl_check_normal_vector() in stl_add_facet() so
23
+ that it doesn't check the normal vector after it adds it. Just
24
+ caused accounting error for normals fixed.
25
+
26
+ Wed Nov 1 08:39:17 PST 1995 Anthony Martin <amartin@engr.csulb.edu>
27
+ * Initialize normal vector to 0,0,0 when a new facet is added.
28
+
29
+ Sat Jan 20 23:43:01 PST 1996 Anthony Martin <amartin@engr.csulb.edu>
30
+ * stlinit.c Initialize pointers to NULL. Check whether they have
31
+ been allocated before free()ing them. Duh.
32
+
33
+ Thu Jan 25 16:02:57 PST 1996 Anthony Martin <amartin@engr.csulb.edu>
34
+ * shared.c Add fclose(fp); to stl_write_off().
35
+ * stl_io.c Add dxf write capability
36
+ * shared.c Add vrml write capability
37
+
38
+ Fri Jul 26 11:31:50 PDT 1996 Anthony Martin <amartin@engr.csulb.edu>
39
+ * Update normals after rotation
40
+ * Add code to calculate the volume of the part
41
+
42
+
@@ -0,0 +1,14 @@
1
+ To install ADMesh, you will need a system with a c compiler.
2
+ Do the following:
3
+
4
+ 1. Get the file admesh-x.xx.tar.gz
5
+ 2. Extract the archive. i.e. type something like the following:
6
+ tar -zxvf admesh-x.xx.tar.gz
7
+ The source files will be extracted into a directory called admesh-x.xx
8
+ 3. cd admesh-x.xx
9
+ 4. type the following:
10
+ ./configure
11
+ make
12
+ su -c 'make install'
13
+
14
+ That should do it. Standard options for configure script and make are provided.
@@ -0,0 +1,62 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ AM_LDFLAGS = @DEAD_STRIP@
4
+ AM_LDFLAGS += -no-undefined
5
+
6
+ pkgconfigdir = $(libdir)/pkgconfig
7
+ pkgconfig_DATA = libadmesh.pc
8
+
9
+ doc_DATA = \
10
+ admesh-doc.txt \
11
+ README.md \
12
+ COPYING \
13
+ AUTHORS \
14
+ ChangeLog \
15
+ ChangeLog.old
16
+
17
+ EXTRA_DIST = \
18
+ $(doc_DATA) \
19
+ INSTALL \
20
+ libadmesh.pc.in \
21
+ block.stl
22
+
23
+ CLEANFILES = libadmesh.pc
24
+
25
+ dist_man_MANS = admesh.1
26
+
27
+ bin_PROGRAMS = admesh
28
+ admesh_SOURCES = \
29
+ src/admesh.c
30
+ admesh_LDADD = \
31
+ libadmesh.la
32
+
33
+ # libadmesh libtool versioning
34
+ LIBADMESH_CURRENT=1
35
+ LIBADMESH_REVISION=0
36
+ LIBADMESH_AGE=0
37
+
38
+ pkginclude_HEADERS = src/stl.h
39
+ lib_LTLIBRARIES = libadmesh.la
40
+
41
+ libadmesh_la_SOURCES = \
42
+ src/connect.c \
43
+ src/normals.c \
44
+ src/shared.c \
45
+ src/stlinit.c \
46
+ src/stl_io.c \
47
+ src/util.c
48
+
49
+ libadmesh_la_LDFLAGS = \
50
+ $(AM_LDFLAGS) \
51
+ -version-info $(LIBADMESH_CURRENT):$(LIBADMESH_REVISION):$(LIBADMESH_AGE)
52
+
53
+ distclean-local:
54
+ rm -rf *.cache *~
55
+
56
+ AUTHORS:
57
+ git log --format='%aN <%aE>' | sort -u > $@
58
+
59
+ ChangeLog:
60
+ ./fortag.sh >$@
61
+
62
+ dist-hook: AUTHORS ChangeLog
@@ -0,0 +1,1100 @@
1
+ # Makefile.in generated by automake 1.14.1 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994-2013 Free Software Foundation, Inc.
5
+
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
+
17
+
18
+
19
+
20
+ VPATH = @srcdir@
21
+ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
22
+ am__make_running_with_option = \
23
+ case $${target_option-} in \
24
+ ?) ;; \
25
+ *) echo "am__make_running_with_option: internal error: invalid" \
26
+ "target option '$${target_option-}' specified" >&2; \
27
+ exit 1;; \
28
+ esac; \
29
+ has_opt=no; \
30
+ sane_makeflags=$$MAKEFLAGS; \
31
+ if $(am__is_gnu_make); then \
32
+ sane_makeflags=$$MFLAGS; \
33
+ else \
34
+ case $$MAKEFLAGS in \
35
+ *\\[\ \ ]*) \
36
+ bs=\\; \
37
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
38
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
39
+ esac; \
40
+ fi; \
41
+ skip_next=no; \
42
+ strip_trailopt () \
43
+ { \
44
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
45
+ }; \
46
+ for flg in $$sane_makeflags; do \
47
+ test $$skip_next = yes && { skip_next=no; continue; }; \
48
+ case $$flg in \
49
+ *=*|--*) continue;; \
50
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
51
+ -*I?*) strip_trailopt 'I';; \
52
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
53
+ -*O?*) strip_trailopt 'O';; \
54
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
55
+ -*l?*) strip_trailopt 'l';; \
56
+ -[dEDm]) skip_next=yes;; \
57
+ -[JT]) skip_next=yes;; \
58
+ esac; \
59
+ case $$flg in \
60
+ *$$target_option*) has_opt=yes; break;; \
61
+ esac; \
62
+ done; \
63
+ test $$has_opt = yes
64
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
65
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
66
+ pkgdatadir = $(datadir)/@PACKAGE@
67
+ pkgincludedir = $(includedir)/@PACKAGE@
68
+ pkglibdir = $(libdir)/@PACKAGE@
69
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
70
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
71
+ install_sh_DATA = $(install_sh) -c -m 644
72
+ install_sh_PROGRAM = $(install_sh) -c
73
+ install_sh_SCRIPT = $(install_sh) -c
74
+ INSTALL_HEADER = $(INSTALL_DATA)
75
+ transform = $(program_transform_name)
76
+ NORMAL_INSTALL = :
77
+ PRE_INSTALL = :
78
+ POST_INSTALL = :
79
+ NORMAL_UNINSTALL = :
80
+ PRE_UNINSTALL = :
81
+ POST_UNINSTALL = :
82
+ build_triplet = @build@
83
+ host_triplet = @host@
84
+ bin_PROGRAMS = admesh$(EXEEXT)
85
+ subdir = .
86
+ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
87
+ $(top_srcdir)/configure $(am__configure_deps) \
88
+ $(srcdir)/config.h.in $(srcdir)/libadmesh.pc.in depcomp \
89
+ $(dist_man_MANS) $(pkginclude_HEADERS) AUTHORS COPYING \
90
+ ChangeLog INSTALL compile config.guess config.sub install-sh \
91
+ missing ltmain.sh
92
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
93
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
94
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
95
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
96
+ $(top_srcdir)/configure.ac
97
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
98
+ $(ACLOCAL_M4)
99
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
100
+ configure.lineno config.status.lineno
101
+ mkinstalldirs = $(install_sh) -d
102
+ CONFIG_HEADER = config.h
103
+ CONFIG_CLEAN_FILES = libadmesh.pc
104
+ CONFIG_CLEAN_VPATH_FILES =
105
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
106
+ am__vpath_adj = case $$p in \
107
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
108
+ *) f=$$p;; \
109
+ esac;
110
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
111
+ am__install_max = 40
112
+ am__nobase_strip_setup = \
113
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
114
+ am__nobase_strip = \
115
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
116
+ am__nobase_list = $(am__nobase_strip_setup); \
117
+ for p in $$list; do echo "$$p $$p"; done | \
118
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
119
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
120
+ if (++n[$$2] == $(am__install_max)) \
121
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
122
+ END { for (dir in files) print dir, files[dir] }'
123
+ am__base_list = \
124
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
125
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
126
+ am__uninstall_files_from_dir = { \
127
+ test -z "$$files" \
128
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
129
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
130
+ $(am__cd) "$$dir" && rm -f $$files; }; \
131
+ }
132
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
133
+ "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)" \
134
+ "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)"
135
+ LTLIBRARIES = $(lib_LTLIBRARIES)
136
+ libadmesh_la_LIBADD =
137
+ am__dirstamp = $(am__leading_dot)dirstamp
138
+ am_libadmesh_la_OBJECTS = src/connect.lo src/normals.lo src/shared.lo \
139
+ src/stlinit.lo src/stl_io.lo src/util.lo
140
+ libadmesh_la_OBJECTS = $(am_libadmesh_la_OBJECTS)
141
+ AM_V_lt = $(am__v_lt_@AM_V@)
142
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
143
+ am__v_lt_0 = --silent
144
+ am__v_lt_1 =
145
+ libadmesh_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
146
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
147
+ $(libadmesh_la_LDFLAGS) $(LDFLAGS) -o $@
148
+ PROGRAMS = $(bin_PROGRAMS)
149
+ am_admesh_OBJECTS = src/admesh.$(OBJEXT)
150
+ admesh_OBJECTS = $(am_admesh_OBJECTS)
151
+ admesh_DEPENDENCIES = libadmesh.la
152
+ AM_V_P = $(am__v_P_@AM_V@)
153
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
154
+ am__v_P_0 = false
155
+ am__v_P_1 = :
156
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
157
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
158
+ am__v_GEN_0 = @echo " GEN " $@;
159
+ am__v_GEN_1 =
160
+ AM_V_at = $(am__v_at_@AM_V@)
161
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
162
+ am__v_at_0 = @
163
+ am__v_at_1 =
164
+ DEFAULT_INCLUDES = -I.@am__isrc@
165
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
166
+ am__depfiles_maybe = depfiles
167
+ am__mv = mv -f
168
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
169
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
170
+ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
171
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
172
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
173
+ $(AM_CFLAGS) $(CFLAGS)
174
+ AM_V_CC = $(am__v_CC_@AM_V@)
175
+ am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
176
+ am__v_CC_0 = @echo " CC " $@;
177
+ am__v_CC_1 =
178
+ CCLD = $(CC)
179
+ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
180
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
181
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
182
+ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
183
+ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
184
+ am__v_CCLD_0 = @echo " CCLD " $@;
185
+ am__v_CCLD_1 =
186
+ SOURCES = $(libadmesh_la_SOURCES) $(admesh_SOURCES)
187
+ DIST_SOURCES = $(libadmesh_la_SOURCES) $(admesh_SOURCES)
188
+ am__can_run_installinfo = \
189
+ case $$AM_UPDATE_INFO_DIR in \
190
+ n|no|NO) false;; \
191
+ *) (install-info --version) >/dev/null 2>&1;; \
192
+ esac
193
+ man1dir = $(mandir)/man1
194
+ NROFF = nroff
195
+ MANS = $(dist_man_MANS)
196
+ DATA = $(doc_DATA) $(pkgconfig_DATA)
197
+ HEADERS = $(pkginclude_HEADERS)
198
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
199
+ $(LISP)config.h.in
200
+ # Read a list of newline-separated strings from the standard input,
201
+ # and print each of them once, without duplicates. Input order is
202
+ # *not* preserved.
203
+ am__uniquify_input = $(AWK) '\
204
+ BEGIN { nonempty = 0; } \
205
+ { items[$$0] = 1; nonempty = 1; } \
206
+ END { if (nonempty) { for (i in items) print i; }; } \
207
+ '
208
+ # Make sure the list of sources is unique. This is necessary because,
209
+ # e.g., the same source file might be shared among _SOURCES variables
210
+ # for different programs/libraries.
211
+ am__define_uniq_tagged_files = \
212
+ list='$(am__tagged_files)'; \
213
+ unique=`for i in $$list; do \
214
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
215
+ done | $(am__uniquify_input)`
216
+ ETAGS = etags
217
+ CTAGS = ctags
218
+ CSCOPE = cscope
219
+ AM_RECURSIVE_TARGETS = cscope
220
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
221
+ distdir = $(PACKAGE)-$(VERSION)
222
+ top_distdir = $(distdir)
223
+ am__remove_distdir = \
224
+ if test -d "$(distdir)"; then \
225
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
226
+ && rm -rf "$(distdir)" \
227
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
228
+ else :; fi
229
+ am__post_remove_distdir = $(am__remove_distdir)
230
+ GZIP_ENV = --best
231
+ DIST_ARCHIVES = $(distdir).tar.xz
232
+ DIST_TARGETS = dist-xz
233
+ distuninstallcheck_listfiles = find . -type f -print
234
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
235
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
236
+ distcleancheck_listfiles = find . -type f -print
237
+ ACLOCAL = @ACLOCAL@
238
+ AMTAR = @AMTAR@
239
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
240
+ AR = @AR@
241
+ AUTOCONF = @AUTOCONF@
242
+ AUTOHEADER = @AUTOHEADER@
243
+ AUTOMAKE = @AUTOMAKE@
244
+ AWK = @AWK@
245
+ CC = @CC@
246
+ CCDEPMODE = @CCDEPMODE@
247
+ CFLAGS = @CFLAGS@
248
+ CPP = @CPP@
249
+ CPPFLAGS = @CPPFLAGS@
250
+ CYGPATH_W = @CYGPATH_W@
251
+ DEAD_STRIP = @DEAD_STRIP@
252
+ DEFS = @DEFS@
253
+ DEPDIR = @DEPDIR@
254
+ DLLTOOL = @DLLTOOL@
255
+ DSYMUTIL = @DSYMUTIL@
256
+ DUMPBIN = @DUMPBIN@
257
+ ECHO_C = @ECHO_C@
258
+ ECHO_N = @ECHO_N@
259
+ ECHO_T = @ECHO_T@
260
+ EGREP = @EGREP@
261
+ EXEEXT = @EXEEXT@
262
+ FGREP = @FGREP@
263
+ GREP = @GREP@
264
+ INSTALL = @INSTALL@
265
+ INSTALL_DATA = @INSTALL_DATA@
266
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
267
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
268
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
269
+ LD = @LD@
270
+ LDFLAGS = @LDFLAGS@
271
+ LIBOBJS = @LIBOBJS@
272
+ LIBS = @LIBS@
273
+ LIBTOOL = @LIBTOOL@
274
+ LIPO = @LIPO@
275
+ LN_S = @LN_S@
276
+ LTLIBOBJS = @LTLIBOBJS@
277
+ MAKEINFO = @MAKEINFO@
278
+ MANIFEST_TOOL = @MANIFEST_TOOL@
279
+ MKDIR_P = @MKDIR_P@
280
+ NM = @NM@
281
+ NMEDIT = @NMEDIT@
282
+ OBJDUMP = @OBJDUMP@
283
+ OBJEXT = @OBJEXT@
284
+ OTOOL = @OTOOL@
285
+ OTOOL64 = @OTOOL64@
286
+ PACKAGE = @PACKAGE@
287
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
288
+ PACKAGE_NAME = @PACKAGE_NAME@
289
+ PACKAGE_STRING = @PACKAGE_STRING@
290
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
291
+ PACKAGE_URL = @PACKAGE_URL@
292
+ PACKAGE_VERSION = @PACKAGE_VERSION@
293
+ PATH_SEPARATOR = @PATH_SEPARATOR@
294
+ RANLIB = @RANLIB@
295
+ SED = @SED@
296
+ SET_MAKE = @SET_MAKE@
297
+ SHELL = @SHELL@
298
+ STRIP = @STRIP@
299
+ VERSION = @VERSION@
300
+ abs_builddir = @abs_builddir@
301
+ abs_srcdir = @abs_srcdir@
302
+ abs_top_builddir = @abs_top_builddir@
303
+ abs_top_srcdir = @abs_top_srcdir@
304
+ ac_ct_AR = @ac_ct_AR@
305
+ ac_ct_CC = @ac_ct_CC@
306
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
307
+ am__include = @am__include@
308
+ am__leading_dot = @am__leading_dot@
309
+ am__quote = @am__quote@
310
+ am__tar = @am__tar@
311
+ am__untar = @am__untar@
312
+ bindir = @bindir@
313
+ build = @build@
314
+ build_alias = @build_alias@
315
+ build_cpu = @build_cpu@
316
+ build_os = @build_os@
317
+ build_vendor = @build_vendor@
318
+ builddir = @builddir@
319
+ datadir = @datadir@
320
+ datarootdir = @datarootdir@
321
+ docdir = @docdir@
322
+ dvidir = @dvidir@
323
+ exec_prefix = @exec_prefix@
324
+ host = @host@
325
+ host_alias = @host_alias@
326
+ host_cpu = @host_cpu@
327
+ host_os = @host_os@
328
+ host_vendor = @host_vendor@
329
+ htmldir = @htmldir@
330
+ includedir = @includedir@
331
+ infodir = @infodir@
332
+ install_sh = @install_sh@
333
+ libdir = @libdir@
334
+ libexecdir = @libexecdir@
335
+ localedir = @localedir@
336
+ localstatedir = @localstatedir@
337
+ mandir = @mandir@
338
+ mkdir_p = @mkdir_p@
339
+ oldincludedir = @oldincludedir@
340
+ pdfdir = @pdfdir@
341
+ prefix = @prefix@
342
+ program_transform_name = @program_transform_name@
343
+ psdir = @psdir@
344
+ sbindir = @sbindir@
345
+ sharedstatedir = @sharedstatedir@
346
+ srcdir = @srcdir@
347
+ sysconfdir = @sysconfdir@
348
+ target_alias = @target_alias@
349
+ top_build_prefix = @top_build_prefix@
350
+ top_builddir = @top_builddir@
351
+ top_srcdir = @top_srcdir@
352
+ ACLOCAL_AMFLAGS = -I m4
353
+ AM_LDFLAGS = @DEAD_STRIP@ -no-undefined
354
+ pkgconfigdir = $(libdir)/pkgconfig
355
+ pkgconfig_DATA = libadmesh.pc
356
+ doc_DATA = \
357
+ admesh-doc.txt \
358
+ README.md \
359
+ COPYING \
360
+ AUTHORS \
361
+ ChangeLog \
362
+ ChangeLog.old
363
+
364
+ EXTRA_DIST = \
365
+ $(doc_DATA) \
366
+ INSTALL \
367
+ libadmesh.pc.in \
368
+ block.stl
369
+
370
+ CLEANFILES = libadmesh.pc
371
+ dist_man_MANS = admesh.1
372
+ admesh_SOURCES = \
373
+ src/admesh.c
374
+
375
+ admesh_LDADD = \
376
+ libadmesh.la
377
+
378
+
379
+ # libadmesh libtool versioning
380
+ LIBADMESH_CURRENT = 1
381
+ LIBADMESH_REVISION = 0
382
+ LIBADMESH_AGE = 0
383
+ pkginclude_HEADERS = src/stl.h
384
+ lib_LTLIBRARIES = libadmesh.la
385
+ libadmesh_la_SOURCES = \
386
+ src/connect.c \
387
+ src/normals.c \
388
+ src/shared.c \
389
+ src/stlinit.c \
390
+ src/stl_io.c \
391
+ src/util.c
392
+
393
+ libadmesh_la_LDFLAGS = \
394
+ $(AM_LDFLAGS) \
395
+ -version-info $(LIBADMESH_CURRENT):$(LIBADMESH_REVISION):$(LIBADMESH_AGE)
396
+
397
+ all: config.h
398
+ $(MAKE) $(AM_MAKEFLAGS) all-am
399
+
400
+ .SUFFIXES:
401
+ .SUFFIXES: .c .lo .o .obj
402
+ am--refresh: Makefile
403
+ @:
404
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
405
+ @for dep in $?; do \
406
+ case '$(am__configure_deps)' in \
407
+ *$$dep*) \
408
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
409
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
410
+ && exit 0; \
411
+ exit 1;; \
412
+ esac; \
413
+ done; \
414
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
415
+ $(am__cd) $(top_srcdir) && \
416
+ $(AUTOMAKE) --foreign Makefile
417
+ .PRECIOUS: Makefile
418
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
419
+ @case '$?' in \
420
+ *config.status*) \
421
+ echo ' $(SHELL) ./config.status'; \
422
+ $(SHELL) ./config.status;; \
423
+ *) \
424
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
425
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
426
+ esac;
427
+
428
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
429
+ $(SHELL) ./config.status --recheck
430
+
431
+ $(top_srcdir)/configure: $(am__configure_deps)
432
+ $(am__cd) $(srcdir) && $(AUTOCONF)
433
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
434
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
435
+ $(am__aclocal_m4_deps):
436
+
437
+ config.h: stamp-h1
438
+ @test -f $@ || rm -f stamp-h1
439
+ @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
440
+
441
+ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
442
+ @rm -f stamp-h1
443
+ cd $(top_builddir) && $(SHELL) ./config.status config.h
444
+ $(srcdir)/config.h.in: $(am__configure_deps)
445
+ ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
446
+ rm -f stamp-h1
447
+ touch $@
448
+
449
+ distclean-hdr:
450
+ -rm -f config.h stamp-h1
451
+ libadmesh.pc: $(top_builddir)/config.status $(srcdir)/libadmesh.pc.in
452
+ cd $(top_builddir) && $(SHELL) ./config.status $@
453
+
454
+ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
455
+ @$(NORMAL_INSTALL)
456
+ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
457
+ list2=; for p in $$list; do \
458
+ if test -f $$p; then \
459
+ list2="$$list2 $$p"; \
460
+ else :; fi; \
461
+ done; \
462
+ test -z "$$list2" || { \
463
+ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
464
+ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
465
+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
466
+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
467
+ }
468
+
469
+ uninstall-libLTLIBRARIES:
470
+ @$(NORMAL_UNINSTALL)
471
+ @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
472
+ for p in $$list; do \
473
+ $(am__strip_dir) \
474
+ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
475
+ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
476
+ done
477
+
478
+ clean-libLTLIBRARIES:
479
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
480
+ @list='$(lib_LTLIBRARIES)'; \
481
+ locs=`for p in $$list; do echo $$p; done | \
482
+ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
483
+ sort -u`; \
484
+ test -z "$$locs" || { \
485
+ echo rm -f $${locs}; \
486
+ rm -f $${locs}; \
487
+ }
488
+ src/$(am__dirstamp):
489
+ @$(MKDIR_P) src
490
+ @: > src/$(am__dirstamp)
491
+ src/$(DEPDIR)/$(am__dirstamp):
492
+ @$(MKDIR_P) src/$(DEPDIR)
493
+ @: > src/$(DEPDIR)/$(am__dirstamp)
494
+ src/connect.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
495
+ src/normals.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
496
+ src/shared.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
497
+ src/stlinit.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
498
+ src/stl_io.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
499
+ src/util.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
500
+
501
+ libadmesh.la: $(libadmesh_la_OBJECTS) $(libadmesh_la_DEPENDENCIES) $(EXTRA_libadmesh_la_DEPENDENCIES)
502
+ $(AM_V_CCLD)$(libadmesh_la_LINK) -rpath $(libdir) $(libadmesh_la_OBJECTS) $(libadmesh_la_LIBADD) $(LIBS)
503
+ install-binPROGRAMS: $(bin_PROGRAMS)
504
+ @$(NORMAL_INSTALL)
505
+ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
506
+ if test -n "$$list"; then \
507
+ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
508
+ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
509
+ fi; \
510
+ for p in $$list; do echo "$$p $$p"; done | \
511
+ sed 's/$(EXEEXT)$$//' | \
512
+ while read p p1; do if test -f $$p \
513
+ || test -f $$p1 \
514
+ ; then echo "$$p"; echo "$$p"; else :; fi; \
515
+ done | \
516
+ sed -e 'p;s,.*/,,;n;h' \
517
+ -e 's|.*|.|' \
518
+ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
519
+ sed 'N;N;N;s,\n, ,g' | \
520
+ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
521
+ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
522
+ if ($$2 == $$4) files[d] = files[d] " " $$1; \
523
+ else { print "f", $$3 "/" $$4, $$1; } } \
524
+ END { for (d in files) print "f", d, files[d] }' | \
525
+ while read type dir files; do \
526
+ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
527
+ test -z "$$files" || { \
528
+ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
529
+ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
530
+ } \
531
+ ; done
532
+
533
+ uninstall-binPROGRAMS:
534
+ @$(NORMAL_UNINSTALL)
535
+ @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
536
+ files=`for p in $$list; do echo "$$p"; done | \
537
+ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
538
+ -e 's/$$/$(EXEEXT)/' \
539
+ `; \
540
+ test -n "$$list" || exit 0; \
541
+ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
542
+ cd "$(DESTDIR)$(bindir)" && rm -f $$files
543
+
544
+ clean-binPROGRAMS:
545
+ @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
546
+ echo " rm -f" $$list; \
547
+ rm -f $$list || exit $$?; \
548
+ test -n "$(EXEEXT)" || exit 0; \
549
+ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
550
+ echo " rm -f" $$list; \
551
+ rm -f $$list
552
+ src/admesh.$(OBJEXT): src/$(am__dirstamp) \
553
+ src/$(DEPDIR)/$(am__dirstamp)
554
+
555
+ admesh$(EXEEXT): $(admesh_OBJECTS) $(admesh_DEPENDENCIES) $(EXTRA_admesh_DEPENDENCIES)
556
+ @rm -f admesh$(EXEEXT)
557
+ $(AM_V_CCLD)$(LINK) $(admesh_OBJECTS) $(admesh_LDADD) $(LIBS)
558
+
559
+ mostlyclean-compile:
560
+ -rm -f *.$(OBJEXT)
561
+ -rm -f src/*.$(OBJEXT)
562
+ -rm -f src/*.lo
563
+
564
+ distclean-compile:
565
+ -rm -f *.tab.c
566
+
567
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/admesh.Po@am__quote@
568
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/connect.Plo@am__quote@
569
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/normals.Plo@am__quote@
570
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/shared.Plo@am__quote@
571
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/stl_io.Plo@am__quote@
572
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/stlinit.Plo@am__quote@
573
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/util.Plo@am__quote@
574
+
575
+ .c.o:
576
+ @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
577
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
578
+ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
579
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
580
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
581
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
582
+
583
+ .c.obj:
584
+ @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
585
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
586
+ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
587
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
588
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
589
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
590
+
591
+ .c.lo:
592
+ @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
593
+ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
594
+ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
595
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
596
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
597
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
598
+
599
+ mostlyclean-libtool:
600
+ -rm -f *.lo
601
+
602
+ clean-libtool:
603
+ -rm -rf .libs _libs
604
+ -rm -rf src/.libs src/_libs
605
+
606
+ distclean-libtool:
607
+ -rm -f libtool config.lt
608
+ install-man1: $(dist_man_MANS)
609
+ @$(NORMAL_INSTALL)
610
+ @list1=''; \
611
+ list2='$(dist_man_MANS)'; \
612
+ test -n "$(man1dir)" \
613
+ && test -n "`echo $$list1$$list2`" \
614
+ || exit 0; \
615
+ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
616
+ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
617
+ { for i in $$list1; do echo "$$i"; done; \
618
+ if test -n "$$list2"; then \
619
+ for i in $$list2; do echo "$$i"; done \
620
+ | sed -n '/\.1[a-z]*$$/p'; \
621
+ fi; \
622
+ } | while read p; do \
623
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
624
+ echo "$$d$$p"; echo "$$p"; \
625
+ done | \
626
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
627
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
628
+ sed 'N;N;s,\n, ,g' | { \
629
+ list=; while read file base inst; do \
630
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
631
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
632
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
633
+ fi; \
634
+ done; \
635
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
636
+ while read files; do \
637
+ test -z "$$files" || { \
638
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
639
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
640
+ done; }
641
+
642
+ uninstall-man1:
643
+ @$(NORMAL_UNINSTALL)
644
+ @list=''; test -n "$(man1dir)" || exit 0; \
645
+ files=`{ for i in $$list; do echo "$$i"; done; \
646
+ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
647
+ sed -n '/\.1[a-z]*$$/p'; \
648
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
649
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
650
+ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
651
+ install-docDATA: $(doc_DATA)
652
+ @$(NORMAL_INSTALL)
653
+ @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
654
+ if test -n "$$list"; then \
655
+ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
656
+ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
657
+ fi; \
658
+ for p in $$list; do \
659
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
660
+ echo "$$d$$p"; \
661
+ done | $(am__base_list) | \
662
+ while read files; do \
663
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
664
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
665
+ done
666
+
667
+ uninstall-docDATA:
668
+ @$(NORMAL_UNINSTALL)
669
+ @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
670
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
671
+ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
672
+ install-pkgconfigDATA: $(pkgconfig_DATA)
673
+ @$(NORMAL_INSTALL)
674
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
675
+ if test -n "$$list"; then \
676
+ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
677
+ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
678
+ fi; \
679
+ for p in $$list; do \
680
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
681
+ echo "$$d$$p"; \
682
+ done | $(am__base_list) | \
683
+ while read files; do \
684
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
685
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
686
+ done
687
+
688
+ uninstall-pkgconfigDATA:
689
+ @$(NORMAL_UNINSTALL)
690
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
691
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
692
+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
693
+ install-pkgincludeHEADERS: $(pkginclude_HEADERS)
694
+ @$(NORMAL_INSTALL)
695
+ @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
696
+ if test -n "$$list"; then \
697
+ echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \
698
+ $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \
699
+ fi; \
700
+ for p in $$list; do \
701
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
702
+ echo "$$d$$p"; \
703
+ done | $(am__base_list) | \
704
+ while read files; do \
705
+ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \
706
+ $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \
707
+ done
708
+
709
+ uninstall-pkgincludeHEADERS:
710
+ @$(NORMAL_UNINSTALL)
711
+ @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
712
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
713
+ dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir)
714
+
715
+ ID: $(am__tagged_files)
716
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
717
+ tags: tags-am
718
+ TAGS: tags
719
+
720
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
721
+ set x; \
722
+ here=`pwd`; \
723
+ $(am__define_uniq_tagged_files); \
724
+ shift; \
725
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
726
+ test -n "$$unique" || unique=$$empty_fix; \
727
+ if test $$# -gt 0; then \
728
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
729
+ "$$@" $$unique; \
730
+ else \
731
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
732
+ $$unique; \
733
+ fi; \
734
+ fi
735
+ ctags: ctags-am
736
+
737
+ CTAGS: ctags
738
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
739
+ $(am__define_uniq_tagged_files); \
740
+ test -z "$(CTAGS_ARGS)$$unique" \
741
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
742
+ $$unique
743
+
744
+ GTAGS:
745
+ here=`$(am__cd) $(top_builddir) && pwd` \
746
+ && $(am__cd) $(top_srcdir) \
747
+ && gtags -i $(GTAGS_ARGS) "$$here"
748
+ cscope: cscope.files
749
+ test ! -s cscope.files \
750
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
751
+ clean-cscope:
752
+ -rm -f cscope.files
753
+ cscope.files: clean-cscope cscopelist
754
+ cscopelist: cscopelist-am
755
+
756
+ cscopelist-am: $(am__tagged_files)
757
+ list='$(am__tagged_files)'; \
758
+ case "$(srcdir)" in \
759
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
760
+ *) sdir=$(subdir)/$(srcdir) ;; \
761
+ esac; \
762
+ for i in $$list; do \
763
+ if test -f "$$i"; then \
764
+ echo "$(subdir)/$$i"; \
765
+ else \
766
+ echo "$$sdir/$$i"; \
767
+ fi; \
768
+ done >> $(top_builddir)/cscope.files
769
+
770
+ distclean-tags:
771
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
772
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
773
+
774
+ distdir: $(DISTFILES)
775
+ $(am__remove_distdir)
776
+ test -d "$(distdir)" || mkdir "$(distdir)"
777
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
778
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
779
+ list='$(DISTFILES)'; \
780
+ dist_files=`for file in $$list; do echo $$file; done | \
781
+ sed -e "s|^$$srcdirstrip/||;t" \
782
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
783
+ case $$dist_files in \
784
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
785
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
786
+ sort -u` ;; \
787
+ esac; \
788
+ for file in $$dist_files; do \
789
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
790
+ if test -d $$d/$$file; then \
791
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
792
+ if test -d "$(distdir)/$$file"; then \
793
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
794
+ fi; \
795
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
796
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
797
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
798
+ fi; \
799
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
800
+ else \
801
+ test -f "$(distdir)/$$file" \
802
+ || cp -p $$d/$$file "$(distdir)/$$file" \
803
+ || exit 1; \
804
+ fi; \
805
+ done
806
+ $(MAKE) $(AM_MAKEFLAGS) \
807
+ top_distdir="$(top_distdir)" distdir="$(distdir)" \
808
+ dist-hook
809
+ -test -n "$(am__skip_mode_fix)" \
810
+ || find "$(distdir)" -type d ! -perm -755 \
811
+ -exec chmod u+rwx,go+rx {} \; -o \
812
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
813
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
814
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
815
+ || chmod -R a+r "$(distdir)"
816
+ dist-gzip: distdir
817
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
818
+ $(am__post_remove_distdir)
819
+
820
+ dist-bzip2: distdir
821
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
822
+ $(am__post_remove_distdir)
823
+
824
+ dist-lzip: distdir
825
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
826
+ $(am__post_remove_distdir)
827
+ dist-xz: distdir
828
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
829
+ $(am__post_remove_distdir)
830
+
831
+ dist-tarZ: distdir
832
+ @echo WARNING: "Support for shar distribution archives is" \
833
+ "deprecated." >&2
834
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
835
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
836
+ $(am__post_remove_distdir)
837
+
838
+ dist-shar: distdir
839
+ @echo WARNING: "Support for distribution archives compressed with" \
840
+ "legacy program 'compress' is deprecated." >&2
841
+ @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
842
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
843
+ $(am__post_remove_distdir)
844
+
845
+ dist-zip: distdir
846
+ -rm -f $(distdir).zip
847
+ zip -rq $(distdir).zip $(distdir)
848
+ $(am__post_remove_distdir)
849
+
850
+ dist dist-all:
851
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
852
+ $(am__post_remove_distdir)
853
+
854
+ # This target untars the dist file and tries a VPATH configuration. Then
855
+ # it guarantees that the distribution is self-contained by making another
856
+ # tarfile.
857
+ distcheck: dist
858
+ case '$(DIST_ARCHIVES)' in \
859
+ *.tar.gz*) \
860
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
861
+ *.tar.bz2*) \
862
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
863
+ *.tar.lz*) \
864
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
865
+ *.tar.xz*) \
866
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
867
+ *.tar.Z*) \
868
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
869
+ *.shar.gz*) \
870
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
871
+ *.zip*) \
872
+ unzip $(distdir).zip ;;\
873
+ esac
874
+ chmod -R a-w $(distdir)
875
+ chmod u+w $(distdir)
876
+ mkdir $(distdir)/_build $(distdir)/_inst
877
+ chmod a-w $(distdir)
878
+ test -d $(distdir)/_build || exit 0; \
879
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
880
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
881
+ && am__cwd=`pwd` \
882
+ && $(am__cd) $(distdir)/_build \
883
+ && ../configure \
884
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
885
+ $(DISTCHECK_CONFIGURE_FLAGS) \
886
+ --srcdir=.. --prefix="$$dc_install_base" \
887
+ && $(MAKE) $(AM_MAKEFLAGS) \
888
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
889
+ && $(MAKE) $(AM_MAKEFLAGS) check \
890
+ && $(MAKE) $(AM_MAKEFLAGS) install \
891
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
892
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
893
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
894
+ distuninstallcheck \
895
+ && chmod -R a-w "$$dc_install_base" \
896
+ && ({ \
897
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
898
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
899
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
900
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
901
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
902
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
903
+ && rm -rf "$$dc_destdir" \
904
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
905
+ && rm -rf $(DIST_ARCHIVES) \
906
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
907
+ && cd "$$am__cwd" \
908
+ || exit 1
909
+ $(am__post_remove_distdir)
910
+ @(echo "$(distdir) archives ready for distribution: "; \
911
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
912
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
913
+ distuninstallcheck:
914
+ @test -n '$(distuninstallcheck_dir)' || { \
915
+ echo 'ERROR: trying to run $@ with an empty' \
916
+ '$$(distuninstallcheck_dir)' >&2; \
917
+ exit 1; \
918
+ }; \
919
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
920
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
921
+ exit 1; \
922
+ }; \
923
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
924
+ || { echo "ERROR: files left after uninstall:" ; \
925
+ if test -n "$(DESTDIR)"; then \
926
+ echo " (check DESTDIR support)"; \
927
+ fi ; \
928
+ $(distuninstallcheck_listfiles) ; \
929
+ exit 1; } >&2
930
+ distcleancheck: distclean
931
+ @if test '$(srcdir)' = . ; then \
932
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
933
+ exit 1 ; \
934
+ fi
935
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
936
+ || { echo "ERROR: files left in build directory after distclean:" ; \
937
+ $(distcleancheck_listfiles) ; \
938
+ exit 1; } >&2
939
+ check-am: all-am
940
+ check: check-am
941
+ all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(MANS) $(DATA) $(HEADERS) \
942
+ config.h
943
+ install-binPROGRAMS: install-libLTLIBRARIES
944
+
945
+ installdirs:
946
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)"; do \
947
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
948
+ done
949
+ install: install-am
950
+ install-exec: install-exec-am
951
+ install-data: install-data-am
952
+ uninstall: uninstall-am
953
+
954
+ install-am: all-am
955
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
956
+
957
+ installcheck: installcheck-am
958
+ install-strip:
959
+ if test -z '$(STRIP)'; then \
960
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
961
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
962
+ install; \
963
+ else \
964
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
965
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
966
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
967
+ fi
968
+ mostlyclean-generic:
969
+
970
+ clean-generic:
971
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
972
+
973
+ distclean-generic:
974
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
975
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
976
+ -rm -f src/$(DEPDIR)/$(am__dirstamp)
977
+ -rm -f src/$(am__dirstamp)
978
+
979
+ maintainer-clean-generic:
980
+ @echo "This command is intended for maintainers to use"
981
+ @echo "it deletes files that may require special tools to rebuild."
982
+ clean: clean-am
983
+
984
+ clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
985
+ clean-libtool mostlyclean-am
986
+
987
+ distclean: distclean-am
988
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
989
+ -rm -rf src/$(DEPDIR)
990
+ -rm -f Makefile
991
+ distclean-am: clean-am distclean-compile distclean-generic \
992
+ distclean-hdr distclean-libtool distclean-local distclean-tags
993
+
994
+ dvi: dvi-am
995
+
996
+ dvi-am:
997
+
998
+ html: html-am
999
+
1000
+ html-am:
1001
+
1002
+ info: info-am
1003
+
1004
+ info-am:
1005
+
1006
+ install-data-am: install-docDATA install-man install-pkgconfigDATA \
1007
+ install-pkgincludeHEADERS
1008
+
1009
+ install-dvi: install-dvi-am
1010
+
1011
+ install-dvi-am:
1012
+
1013
+ install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
1014
+
1015
+ install-html: install-html-am
1016
+
1017
+ install-html-am:
1018
+
1019
+ install-info: install-info-am
1020
+
1021
+ install-info-am:
1022
+
1023
+ install-man: install-man1
1024
+
1025
+ install-pdf: install-pdf-am
1026
+
1027
+ install-pdf-am:
1028
+
1029
+ install-ps: install-ps-am
1030
+
1031
+ install-ps-am:
1032
+
1033
+ installcheck-am:
1034
+
1035
+ maintainer-clean: maintainer-clean-am
1036
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
1037
+ -rm -rf $(top_srcdir)/autom4te.cache
1038
+ -rm -rf src/$(DEPDIR)
1039
+ -rm -f Makefile
1040
+ maintainer-clean-am: distclean-am maintainer-clean-generic
1041
+
1042
+ mostlyclean: mostlyclean-am
1043
+
1044
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1045
+ mostlyclean-libtool
1046
+
1047
+ pdf: pdf-am
1048
+
1049
+ pdf-am:
1050
+
1051
+ ps: ps-am
1052
+
1053
+ ps-am:
1054
+
1055
+ uninstall-am: uninstall-binPROGRAMS uninstall-docDATA \
1056
+ uninstall-libLTLIBRARIES uninstall-man uninstall-pkgconfigDATA \
1057
+ uninstall-pkgincludeHEADERS
1058
+
1059
+ uninstall-man: uninstall-man1
1060
+
1061
+ .MAKE: all install-am install-strip
1062
+
1063
+ .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-am clean \
1064
+ clean-binPROGRAMS clean-cscope clean-generic \
1065
+ clean-libLTLIBRARIES clean-libtool cscope cscopelist-am ctags \
1066
+ ctags-am dist dist-all dist-bzip2 dist-gzip dist-hook \
1067
+ dist-lzip dist-shar dist-tarZ dist-xz dist-zip distcheck \
1068
+ distclean distclean-compile distclean-generic distclean-hdr \
1069
+ distclean-libtool distclean-local distclean-tags \
1070
+ distcleancheck distdir distuninstallcheck dvi dvi-am html \
1071
+ html-am info info-am install install-am install-binPROGRAMS \
1072
+ install-data install-data-am install-docDATA install-dvi \
1073
+ install-dvi-am install-exec install-exec-am install-html \
1074
+ install-html-am install-info install-info-am \
1075
+ install-libLTLIBRARIES install-man install-man1 install-pdf \
1076
+ install-pdf-am install-pkgconfigDATA install-pkgincludeHEADERS \
1077
+ install-ps install-ps-am install-strip installcheck \
1078
+ installcheck-am installdirs maintainer-clean \
1079
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
1080
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1081
+ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \
1082
+ uninstall-docDATA uninstall-libLTLIBRARIES uninstall-man \
1083
+ uninstall-man1 uninstall-pkgconfigDATA \
1084
+ uninstall-pkgincludeHEADERS
1085
+
1086
+
1087
+ distclean-local:
1088
+ rm -rf *.cache *~
1089
+
1090
+ AUTHORS:
1091
+ git log --format='%aN <%aE>' | sort -u > $@
1092
+
1093
+ ChangeLog:
1094
+ ./fortag.sh >$@
1095
+
1096
+ dist-hook: AUTHORS ChangeLog
1097
+
1098
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
1099
+ # Otherwise a system limit (for SysV at least) may be exceeded.
1100
+ .NOEXPORT: