storage: rewrite SaveTransaction with ORMv2
[abstract.git] / check.mk
bloba0242c703f0c7320c727c628dd222c0d95688a78
1 #!/usr/bin/make -f
2 # check.mk -- Run make -f check.mk for integrated unit testing
3 # Copyright (C) 2007 Sergey Yanovich
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 top_srcdir := $(shell cd .. && pwd)
21 LIBXULPATH=$(shell PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig pkg-config --variable=sdkdir libxul)
23 all: objdir/Makefile
24 @cd objdir && make
26 setup: objdir/Makefile
28 mozconfig: app/test/unit/mozconfig
29 cp $< $@
31 objdir/Makefile: mozconfig $(top_srcdir)/configure $(top_srcdir)/nsprpub/configure
32 test -d objdir || mkdir objdir
33 cd objdir && \
34 MOZCONFIG=$(top_srcdir)/abstract/mozconfig $(top_srcdir)/configure \
35 --with-libxul-sdk=$(LIBXULPATH)
36 touch $@
38 $(top_srcdir)/configure: $(top_srcdir)/configure.in
39 cd $(top_srcdir) && autoconf
41 $(top_srcdir)/nsprpub/configure: $(top_srcdir)/nsprpub/configure.in
42 cd $(top_srcdir)/nsprpub && autoconf
44 build: objdir/Makefile
45 @cd objdir && make
47 clean: objdir/Makefile
48 @cd objdir && make clean
50 install: objdir/Makefile
51 @cd objdir && make install
53 objpkg/Makefile: $(top_srcdir)/configure
54 test -d objpkg || mkdir objpkg
55 cd objpkg && \
56 MOZCONFIG=$(top_srcdir)/abstract/installer/mozconfig $(top_srcdir)/configure \
57 --with-libxul-sdk=$(LIBXULPATH)
59 installer: objpkg/Makefile
60 make -C objpkg
61 make -C objpkg installer
63 package: objpkg/Makefile
64 make -C objpkg
65 make -C objpkg package
67 .PHONY: all setup clean build install package installer