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)
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
)
26 setup
: objdir
/Makefile
28 mozconfig
: app
/test/unit
/mozconfig
31 objdir
/Makefile
: mozconfig
$(top_srcdir
)/configure
$(top_srcdir
)/nsprpub
/configure
32 test -d objdir || mkdir objdir
34 MOZCONFIG
=$(top_srcdir
)/abstract
/mozconfig
$(top_srcdir
)/configure \
35 --with-libxul-sdk
=$(LIBXULPATH
)
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
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
56 MOZCONFIG
=$(top_srcdir
)/abstract
/installer
/mozconfig
$(top_srcdir
)/configure \
57 --with-libxul-sdk
=$(LIBXULPATH
)
59 installer
: objpkg
/Makefile
61 make
-C objpkg installer
63 package
: objpkg
/Makefile
65 make
-C objpkg package
67 .PHONY
: all setup
clean build
install package installer