-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
53 lines (45 loc) · 1.7 KB
/
Makefile.am
File metadata and controls
53 lines (45 loc) · 1.7 KB
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
47
48
49
50
51
52
53
## Place generated object files (.o) into the same directory as their source
## files, in order to avoid collisions when non-recursive make is used.
AUTOMAKE_OPTIONS = subdir-objects
SUBDIRS = src tests
ACLOCAL_AMFLAGS = -I m4
lib_LTLIBRARIES = libbestofjava.la
libbestofjava_la_SOURCES = src/java/util/Calendar.cpp \
src/java/util/Properties.cpp \
src/java/io/OutputStreamWriter.cpp \
src/java/io/OutputStream.cpp \
src/java/io/PrintWriter.cpp \
src/java/io/File.cpp \
src/java/io/IOException.cpp \
src/java/io/Writer.cpp \
src/java/lang/System.cpp \
src/java/net/URLDecoder.cpp \
src/org/xml/sax/helpers/DefaultHandler.cpp \
src/org/xml/sax/Attributes.cpp \
src/org/xml/sax/SAXException.cpp \
src/javax/xml/parsers/SAXParserFactory.cpp \
src/javax/xml/parsers/SAXParser.cpp
libbestofjava_la_CXXFLAGS = \
-I$(top_srcdir)/src \
-Weffc++ -Wall -Wextra -Werror -Wcast-align -Wcast-qual -Wconversion -Wdisabled-optimization -Wfloat-equal -Wformat=2 -Wmissing-format-attribute -Wmissing-noreturn -Wno-deprecated-declarations -Wno-format-y2k -Wno-format-extra-args -Wold-style-cast -Wpacked -Wpointer-arith -Wredundant-decls -Wshadow -Wsign-compare -Wundef
libbestofjava_la_LDFLAGS = -version-info 0:0:0
## Define an independent executable script for inclusion in the distribution
## archive. However, it will not be installed on an end user's system due to
## the noinst_ prefix.
dist_noinst_SCRIPTS = autogen.sh
EXTRA_DIST = README.md
tests/besttest.sh \
tests/SimpleTester.cpp \
tests/SimpleTester.hpp \
tests/SimpleTester.java
MAINTAINERCLEANFILES = \
Makefile.in \
aclocal.m4 \
configure \
config.guess \
config.sub \
depcomp \
install-sh \
ltmain.sh \
missing \
compile