~ubuntu-branches/ubuntu/quantal/config-manager/quantal

« back to all changes in this revision

Viewing changes to libgetopt/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Anand Kumria
  • Date: 2004-07-19 22:27:50 UTC
  • mto: (3.1.1 dapper)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20040719222750-sztqdj1aoj2r6frr
Tags: upstream-0.1p83
ImportĀ upstreamĀ versionĀ 0.1p83

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
#
3
 
# $Id: Makefile.am,v 1.11 2003/11/27 13:17:34 rbcollins Exp $
4
 
#
5
 
 
6
 
AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5 foreign
7
 
AM_CXXFLAGS = -Wall -Werror
8
 
##DIST_SUBDIRS  = src
9
 
##SUBDIRS               = src
10
 
 
11
 
DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
12
 
 
13
 
INCLUDES = -I$(top_srcdir)/include
14
 
 
15
 
getoptincludedir = $(includedir)/getopt++
16
 
 
17
 
lib_LTLIBRARIES = libgetopt++.la
18
 
check_PROGRAMS = tests/OptionSet tests/testoption tests/optioniterator tests/BoolOptionTest
19
 
 
20
 
TESTS = tests/OptionSet tests/optioniterator tests/BoolOptionTest
21
 
 
22
 
libgetopt___la_SOURCES = src/GetOption.cc src/Option.cc src/BoolOption.cc \
23
 
        src/OptionSet.cc \
24
 
        src/StringOption.cc
25
 
 
26
 
libgetopt___la_LDFLAGS = -version-info 1:1:0
27
 
 
28
 
getoptinclude_HEADERS = include/getopt++/Option.h \
29
 
  include/getopt++/BoolOption.h \
30
 
  include/getopt++/DefaultFormatter.h \
31
 
  include/getopt++/GetOption.h \
32
 
  include/getopt++/OptionSet.h \
33
 
  include/getopt++/StringOption.h
34
 
 
35
 
tests_testoption_SOURCES = tests/testoption.cc
36
 
tests_testoption_LDADD = libgetopt++.la
37
 
 
38
 
tests_optioniterator_SOURCES = tests/optioniterator.cc
39
 
tests_optioniterator_LDADD = libgetopt++.la
40
 
 
41
 
tests_BoolOptionTest_SOURCES = tests/BoolOptionTest.cc
42
 
tests_BoolOptionTest_LDADD = libgetopt++.la
43
 
 
44
 
tests_OptionSet_SOURCES = tests/OptionSet.cc
45
 
tests_OptionSet_LDADD = libgetopt++.la
46