`make all` is not for tests.
1 # Copyright 2017, pEp Foundation
2 # This file is part of pEpEngine
3 # This file may be used under the terms of the GNU General Public License version 3
6 HERE_REL := $(notdir $(CURDIR))
10 ifneq ($(wildcard local.conf),)
11 $(info ================================================)
12 $(info Overrides in `local.conf` are used.)
13 $(info ================================================)
17 $(info ================================================)
18 $(info Overrides in `$(BUILD_CONFIG)` are used.)
19 $(info ================================================)
22 .PHONY: all sync asn1 build install dbinstall uninstall clean tags test package db
28 # `make all` is not for tests, that's what `make test` is for
38 $(MAKE) -C src install
39 $(MAKE) -C asn.1 install
42 $(MAKE) -C src beinstall
48 $(MAKE) -C src uninstall
49 $(MAKE) -C asn.1 uninstall
56 $(MAKE) -C asn.1 clean
66 cd .. ; COPYFILE_DISABLE=true tar cjf pEpEngine.tar.bz2 "$(HERE_REL)"