diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-16 05:38:01 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:52 -0400 |
commit | 8cdc8008c36bd03e44e43aef3fc84ff20df7bd34 (patch) | |
tree | b4efb59a6c41d22cbc7e651f8ce215e38e95bfc4 /Makefile.am | |
parent | 8a2b87e6e1f5cd8784130f3cfcd1911b214c55cc (diff) | |
download | fork-ledger-8cdc8008c36bd03e44e43aef3fc84ff20df7bd34.tar.gz fork-ledger-8cdc8008c36bd03e44e43aef3fc84ff20df7bd34.tar.bz2 fork-ledger-8cdc8008c36bd03e44e43aef3fc84ff20df7bd34.zip |
Corrected problem with uninitialized value_t's.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 88deb7b1..21db24a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,15 +22,15 @@ endif AM_YFLAGS = -d AM_LFLAGS = -o $(LEX_OUTPUT_ROOT).c -WARNFLAGS = -Wall -Wextra -Wfloat-equal -Wno-endif-labels -WARNFLAGS += -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -WARNFLAGS += -Wconversion -Wshorten-64-to-32 -Wsign-compare -WARNFLAGS += -Wmissing-field-initializers -pedantic-errors -WARNFLAGS += -Weffc++ -Wstrict-null-sentinel -Wold-style-cast -WARNFLAGS += -Woverloaded-virtual -Wsign-promo +WARNFLAGS = -Wall #-pedantic-errors +#WARNFLAGS += -Wextra -Wfloat-equal -Wno-endif-labels -Wcast-qual +#WARNFLAGS += -Wcast-align -Wwrite-strings -Wconversion -Wconversion +#WARNFLAGS += -Wshorten-64-to-32 -Wsign-compare -Weffc++ -Wsign-promo +#WARNFLAGS += -Wmissing-field-initializers -Wstrict-null-sentinel +#WARNFLAGS += -Wold-style-cast -Woverloaded-virtual libledger_la_CPPFLAGS = -I$(top_builddir)/gdtoa -I$(srcdir)/gdtoa \ - -I$(srcdir)/src #$(WARNFLAGS) + -I$(srcdir)/src $(WARNFLAGS) libledger_la_LDFLAGS = -release $(PACKAGE_VERSION) libledger_la_SOURCES = \ |