File: Makefile.am

package info (click to toggle)
config-manager 0.4-2.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 3,432 kB
  • ctags: 1,037
  • sloc: sh: 10,792; cpp: 2,519; python: 2,329; makefile: 152
file content (46 lines) | stat: -rw-r--r-- 1,341 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
## Process this file with automake to produce Makefile.in
#
# $Id: Makefile.am,v 1.12 2003/12/10 20:51:44 rbcollins Exp $
#

AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects 1.5 foreign
AM_CXXFLAGS = -Wall -Werror
##DIST_SUBDIRS	= src
##SUBDIRS		= src

DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*

INCLUDES = -I$(top_srcdir)/include

getoptincludedir = $(includedir)/getopt++

lib_LTLIBRARIES = libgetopt++.la
check_PROGRAMS = tests/OptionSet tests/testoption tests/optioniterator tests/BoolOptionTest

TESTS = tests/OptionSet tests/optioniterator tests/BoolOptionTest

libgetopt___la_SOURCES = src/GetOption.cc src/Option.cc src/BoolOption.cc \
	src/OptionSet.cc \
	src/StringOption.cc

libgetopt___la_LDFLAGS = -version-info 1:1:0

getoptinclude_HEADERS = include/getopt++/Option.h \
  include/getopt++/BoolOption.h \
  include/getopt++/DefaultFormatter.h \
  include/getopt++/GetOption.h \
  include/getopt++/OptionSet.h \
  include/getopt++/StringOption.h

tests_testoption_SOURCES = tests/testoption.cc
tests_testoption_LDADD = libgetopt++.la

tests_optioniterator_SOURCES = tests/optioniterator.cc
tests_optioniterator_LDADD = libgetopt++.la

tests_BoolOptionTest_SOURCES = tests/BoolOptionTest.cc
tests_BoolOptionTest_LDADD = libgetopt++.la

tests_OptionSet_SOURCES = tests/OptionSet.cc
tests_OptionSet_LDADD = libgetopt++.la