]> cygwin.com Git - cygwin-apps/setup.git/blob - libgetopt++/Makefile.am
fbb9298d33348c0ad0123539ecf8c3b165f90903
[cygwin-apps/setup.git] / libgetopt++ / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 #
3 # $Id$
4 #
5
6 AUTOMAKE_OPTIONS = subdir-objects 1.9 foreign
7 # -Wno-uninitialized added to deal with g++ 3.4.4's spurious STL warnings
8 # (http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22207)
9 AM_CXXFLAGS = -Wall -Werror -Wno-uninitialized
10 ##DIST_SUBDIRS = src
11 ##SUBDIRS = src
12
13 EXTRA_DIST = \
14 bootstrap.sh
15
16 DISTCLEANFILES = include/stamp-h include/stamp-h[0-9]*
17
18 INCLUDES = -I$(top_srcdir)/include
19
20 getoptincludedir = $(includedir)/getopt++
21
22 lib_LTLIBRARIES = libgetopt++.la
23 check_PROGRAMS = tests/OptionSet tests/testoption tests/optioniterator tests/BoolOptionTest
24
25 TESTS = tests/OptionSet tests/optioniterator tests/BoolOptionTest
26
27 libgetopt___la_SOURCES = src/GetOption.cc src/Option.cc src/BoolOption.cc \
28 src/OptionSet.cc \
29 src/StringArrayOption.cc src/StringOption.cc
30
31 libgetopt___la_LDFLAGS = -version-info 1:1:0
32
33 getoptinclude_HEADERS = include/getopt++/Option.h \
34 include/getopt++/BoolOption.h \
35 include/getopt++/DefaultFormatter.h \
36 include/getopt++/GetOption.h \
37 include/getopt++/OptionSet.h \
38 include/getopt++/StringArrayOption.h \
39 include/getopt++/StringOption.h
40
41 tests_testoption_SOURCES = tests/testoption.cc
42 tests_testoption_LDADD = libgetopt++.la
43
44 tests_optioniterator_SOURCES = tests/optioniterator.cc
45 tests_optioniterator_LDADD = libgetopt++.la
46
47 tests_BoolOptionTest_SOURCES = tests/BoolOptionTest.cc
48 tests_BoolOptionTest_LDADD = libgetopt++.la
49
50 tests_OptionSet_SOURCES = tests/OptionSet.cc
51 tests_OptionSet_LDADD = libgetopt++.la
52
This page took 0.037849 seconds and 4 git commands to generate.