~ubuntu-branches/ubuntu/hardy/gengetopt/hardy

« back to all changes in this revision

Viewing changes to src/skels/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-01-29 14:55:40 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080129145540-bkah1bl330gpelmh
Tags: 2.22-1ubuntu1
* Merge with Debian; remaining changes:
  - Fix build failures with g++-4.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
@SET_MAKE@
16
16
 
17
 
# Copyright (C) 2002 Lorenzo Bettini <http://www.lorenzobettini.it>
 
17
# Copyright (C) 1999-2007  Free Software Foundation, Inc.
18
18
#
19
19
# This file is free software; as a special exception the author gives
20
20
# unlimited permission to copy and/or distribute it, with or without
46
46
build_triplet = @build@
47
47
host_triplet = @host@
48
48
subdir = src/skels
49
 
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in TODO
 
49
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
50
50
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
51
51
am__aclocal_m4_deps = $(top_srcdir)/gl/m4/getopt.m4 \
52
52
        $(top_srcdir)/gl/m4/gnulib-comp.m4 \
60
60
CONFIG_CLEAN_FILES =
61
61
LTLIBRARIES = $(noinst_LTLIBRARIES)
62
62
libgen_la_LIBADD =
63
 
am_libgen_la_OBJECTS = header.lo c_source.lo handle_help.lo \
64
 
        handle_version.lo generic_option.lo required_option.lo \
65
 
        dependant_option.lo generic_option_group.lo group_counter.lo \
66
 
        group_option.lo print_help_string.lo multiple_opt_list.lo \
67
 
        multiple_opt_struct.lo multiple_option.lo \
68
 
        multiple_fill_array.lo multiple_fill_array_default.lo \
69
 
        copyright.lo free_string.lo free_multiple.lo \
70
 
        free_inputs_string.lo reset_group.lo exit_failure.lo \
71
 
        update_given.lo update_arg.lo option_arg.lo given_field.lo \
72
 
        clear_given.lo clear_arg.lo free_list.lo file_save.lo \
73
 
        file_save_multiple.lo init_args_info.lo custom_getopt_gen.lo
 
63
am__objects_1 = header.lo c_source.lo handle_help.lo handle_version.lo \
 
64
        generic_option.lo required_option.lo dependant_option.lo \
 
65
        group_counter.lo group_option.lo print_help_string.lo \
 
66
        multiple_opt_list.lo multiple_fill_array.lo copyright.lo \
 
67
        free_string.lo free_multiple.lo reset_group.lo exit_failure.lo \
 
68
        update_given.lo option_arg.lo given_field.lo clear_given.lo \
 
69
        clear_arg.lo free_list.lo file_save.lo file_save_multiple.lo \
 
70
        init_args_info.lo custom_getopt_gen.lo check_modes.lo
 
71
am_libgen_la_OBJECTS = $(am__objects_1)
74
72
libgen_la_OBJECTS = $(am_libgen_la_OBJECTS)
75
73
DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
76
74
depcomp = $(SHELL) $(top_srcdir)/depcomp
105
103
AUTOHEADER = @AUTOHEADER@
106
104
AUTOMAKE = @AUTOMAKE@
107
105
AWK = @AWK@
 
106
BASH_SHELL = @BASH_SHELL@
108
107
CC = @CC@
109
108
CCDEPMODE = @CCDEPMODE@
110
109
CFLAGS = @CFLAGS@
154
153
PACKAGE_VERSION = @PACKAGE_VERSION@
155
154
PATH_SEPARATOR = @PATH_SEPARATOR@
156
155
RANLIB = @RANLIB@
 
156
SED = @SED@
157
157
SET_MAKE = @SET_MAKE@
158
158
SHELL = @SHELL@
159
159
SOURCEHIGHLIGHT = @SOURCEHIGHLIGHT@
223
223
@NO_GENGEN_FALSE@GENERATE = $(GENGEN)
224
224
INCLUDES = -I@top_srcdir@/src
225
225
noinst_LTLIBRARIES = libgen.la
226
 
libgen_la_SOURCES = header.cc c_source.cc handle_help.cc handle_version.cc \
227
 
generic_option.cc required_option.cc dependant_option.cc \
228
 
generic_option_group.cc group_counter.cc group_option.cc \
229
 
print_help_string.cc \
230
 
multiple_opt_list.cc multiple_opt_list.h \
231
 
multiple_opt_struct.cc multiple_opt_struct.h \
232
 
multiple_option.cc multiple_option.h \
233
 
multiple_fill_array.cc multiple_fill_array.h \
234
 
multiple_fill_array_default.cc multiple_fill_array_default.h \
235
 
copyright.cc \
236
 
free_string.cc free_string.h \
237
 
free_multiple.cc free_multiple.h \
238
 
free_inputs_string.cc free_inputs_string.h \
239
 
reset_group.cc reset_group.h \
240
 
exit_failure.cc exit_failure.h \
241
 
update_given.cc update_given.h \
242
 
update_arg.cc update_arg.h \
243
 
option_arg.cc option_arg.h \
244
 
given_field.cc given_field.h \
245
 
clear_given.cc clear_given.h \
246
 
clear_arg.cc clear_arg.h \
247
 
free_list.cc free_list.h \
248
 
file_save.cc file_save.h \
249
 
file_save_multiple.cc file_save_multiple.h \
250
 
init_args_info.cc init_args_info.h \
251
 
custom_getopt_gen.cc custom_getopt_gen.h
252
 
 
 
226
libgen_la_SOURCES = $(BUILT_SOURCES)
253
227
BUILT_SOURCES = header.h c_source.h header.cc c_source.cc \
254
228
handle_help.h handle_version.h handle_help.cc handle_version.cc \
255
229
generic_option.h required_option.h dependant_option.h \
256
230
generic_option.cc required_option.cc dependant_option.cc \
257
 
generic_option_group.h group_counter.h group_option.h \
258
 
generic_option_group.cc group_counter.cc group_option.cc \
 
231
group_counter.h group_option.h \
 
232
group_counter.cc group_option.cc \
259
233
print_help_string.h print_help_string.cc \
260
234
multiple_opt_list.cc multiple_opt_list.h \
261
 
multiple_opt_struct.cc multiple_opt_struct.h \
262
 
multiple_option.cc multiple_option.h \
263
235
multiple_fill_array.cc multiple_fill_array.h \
264
 
multiple_fill_array_default.cc multiple_fill_array_default.h \
265
236
copyright.cc copyright.h \
266
237
free_string.cc free_string.h \
267
238
free_multiple.cc free_multiple.h \
268
 
free_inputs_string.cc free_inputs_string.h \
269
239
reset_group.cc reset_group.h \
270
240
exit_failure.cc exit_failure.h \
271
241
update_given.cc update_given.h \
272
 
update_arg.cc update_arg.h \
273
242
option_arg.cc option_arg.h \
274
243
given_field.cc given_field.h \
275
244
clear_given.cc clear_given.h \
278
247
file_save.cc file_save.h \
279
248
file_save_multiple.cc file_save_multiple.h \
280
249
init_args_info.cc init_args_info.h \
281
 
custom_getopt_gen.cc custom_getopt_gen.h
 
250
custom_getopt_gen.cc custom_getopt_gen.h \
 
251
check_modes.cc check_modes.h
282
252
 
283
253
EXTRA_DIST = header.h_skel c_source.h_skel handle_help.h_skel \
284
254
handle_version.h_skel generic_option.h_skel \
285
255
required_option.h_skel dependant_option.h_skel \
286
 
generic_option_group.h_skel group_counter.h_skel group_option.h_skel \
 
256
group_counter.h_skel group_option.h_skel \
287
257
print_help_string.h_skel \
288
 
multiple_opt_list.h_skel multiple_opt_struct.h_skel multiple_option.h_skel \
289
 
multiple_fill_array.h_skel multiple_fill_array_default.h_skel \
 
258
multiple_opt_list.h_skel \
 
259
multiple_fill_array.h_skel \
290
260
copyright.h_skel free_string.h_skel \
291
 
free_multiple.h_skel free_inputs_string.h_skel \
 
261
free_multiple.h_skel \
292
262
reset_group.h_skel \
293
263
exit_failure.h_skel \
294
264
update_given.h_skel \
295
 
update_arg.h_skel \
296
265
option_arg.h_skel \
297
266
given_field.h_skel \
298
267
clear_given.h_skel \
302
271
file_save_multiple.h_skel \
303
272
init_args_info.h_skel \
304
273
custom_getopt_gen.h_skel \
 
274
check_modes.h_skel \
305
275
$(BUILT_SOURCES)
306
276
 
307
277
all: $(BUILT_SOURCES)
357
327
        -rm -f *.tab.c
358
328
 
359
329
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c_source.Plo@am__quote@
 
330
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_modes.Plo@am__quote@
360
331
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clear_arg.Plo@am__quote@
361
332
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/clear_given.Plo@am__quote@
362
333
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/copyright.Plo@am__quote@
365
336
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exit_failure.Plo@am__quote@
366
337
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file_save.Plo@am__quote@
367
338
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file_save_multiple.Plo@am__quote@
368
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/free_inputs_string.Plo@am__quote@
369
339
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/free_list.Plo@am__quote@
370
340
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/free_multiple.Plo@am__quote@
371
341
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/free_string.Plo@am__quote@
372
342
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/generic_option.Plo@am__quote@
373
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/generic_option_group.Plo@am__quote@
374
343
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/given_field.Plo@am__quote@
375
344
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/group_counter.Plo@am__quote@
376
345
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/group_option.Plo@am__quote@
379
348
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/header.Plo@am__quote@
380
349
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/init_args_info.Plo@am__quote@
381
350
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_fill_array.Plo@am__quote@
382
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_fill_array_default.Plo@am__quote@
383
351
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_opt_list.Plo@am__quote@
384
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_opt_struct.Plo@am__quote@
385
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/multiple_option.Plo@am__quote@
386
352
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/option_arg.Plo@am__quote@
387
353
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/print_help_string.Plo@am__quote@
388
354
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/required_option.Plo@am__quote@
389
355
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/reset_group.Plo@am__quote@
390
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/update_arg.Plo@am__quote@
391
356
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/update_given.Plo@am__quote@
392
357
 
393
358
.cc.o: