storage: update income using a ISqlRequest
[abstract.git] / storage / base / Makefile.in
blobabc02d9c2d0f15a99ef844c41c59ebba70374d53
1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
12 # License.
14 # The Original Code is the Mozilla Browser code.
16 # The Initial Developer of the Original Code is
17 # Netscape Communications Corporation.
18 # Portions created by the Initial Developer are Copyright (C) 2002
19 # the Initial Developer. All Rights Reserved.
21 # Contributor(s):
22 # Brian Ryner <bryner@brianryner.com>
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 DEPTH = ../../..
39 topsrcdir = @top_srcdir@
40 srcdir = @srcdir@
41 VPATH = @srcdir@
43 include $(DEPTH)/config/autoconf.mk
45 ifdef ENABLE_TESTS
46 DIRS = test
47 endif
49 MODULE = storage
50 LIBRARY_NAME = storage
51 SHORT_LIBNAME = storage
52 EXPORT_LIBRARY = 1
53 IS_COMPONENT = 1
54 MODULE_NAME = aaStorage
56 REQUIRES = \
57 xpcom \
58 string \
59 storage \
60 base \
61 accounting \
62 $(NULL)
64 CPPSRCS = \
65 aaStorageUtils.cpp\
66 aaSession.cpp \
67 aaSqlChannel.cpp \
68 aaManager.cpp \
69 aaSaveDispatcher.cpp \
70 aaLoadBuilder.cpp \
71 aaSqlFilter.cpp \
72 aaSqlSimpleLoader.cpp \
73 aaSqlSimpleListener.cpp \
74 aaSqlIdListener.cpp \
75 aaLoadLastId.cpp \
76 aaLoadRequest.cpp \
77 aaSaveEntity.cpp \
78 aaInsertEntity.cpp \
79 aaUpdateEntity.cpp \
80 aaLoadEntity.cpp \
81 aaInsertResource.cpp \
82 aaInsertAsset.cpp \
83 aaUpdateAsset.cpp \
84 aaSaveAsset.cpp \
85 aaInsertMoney.cpp \
86 aaSaveMoney.cpp \
87 aaInsertFlow.cpp \
88 aaInsertTerm.cpp \
89 aaSaveFlow.cpp \
90 aaLoadResource.cpp \
91 aaStateRow.cpp \
92 aaSaveEvent.cpp \
93 aaLoadFlow.cpp \
94 aaLoadFlowStates.cpp \
95 aaSaveBalance.cpp \
96 aaLoadBalance.cpp \
97 aaLoadPendingFacts.cpp \
98 aaLoadFactList.cpp \
99 aaIncomeInsert.cpp \
100 aaIncomeUpdate.cpp \
101 aaIncomeDelete.cpp \
102 aaSaveIncome.cpp \
103 aaLoadIncome.cpp \
104 aaCalcDiff.cpp \
105 aaInsertQuote.cpp \
106 aaSaveQuote.cpp \
107 aaLoadQuote.cpp \
108 aaInsertChart.cpp \
109 aaSaveChart.cpp \
110 aaLoadChart.cpp \
111 aaIncomeRow.cpp \
112 aaSaveTransaction.cpp \
113 aaStorageModule.cpp \
114 $(NULL)
116 include $(topsrcdir)/config/rules.mk
118 EXTRA_DSO_LDOPTS+= \
119 $(XPCOM_GLUE_LDOPTS) \
120 $(NSPR_LIBS) \
121 $(MOZ_JS_LIBS) \
122 $(NULL)