pgadmin4/Makefile

50 lines
1.1 KiB
Makefile
Raw Normal View History

########################################################################
#
# pgAdmin 4 - PostgreSQL Tools
#
2017-01-04 07:33:32 -06:00
# Copyright (C) 2013 - 2017, The pgAdmin Development Team
# This software is released under the PostgreSQL Licence
#
#########################################################################
SHELL = /bin/sh
#########################################################################
# High-level targets
#########################################################################
2016-06-03 04:56:53 -05:00
# Include only platform-independent builds in all
all: docs pip src
2016-06-03 04:56:53 -05:00
# Include all clean sub-targets in clean
clean: clean-dist clean-docs clean-pip clean-appbundle clean-src
pip: docs
./pkg/pip/build.sh
2016-06-02 07:56:56 -05:00
appbundle: docs
./pkg/mac/build.sh
src:
./pkg/src/build.sh
2016-06-02 07:56:56 -05:00
docs:
LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 $(MAKE) -C docs/en_US -f Makefile.sphinx html
clean-pip:
rm -rf pip-build/
2016-06-02 07:56:56 -05:00
clean-appbundle:
rm -rf mac-build/
2016-06-03 04:56:53 -05:00
clean-src:
rm -rf src-build/
clean-docs:
LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 $(MAKE) -C docs/en_US -f Makefile.sphinx clean
2016-06-03 04:56:53 -05:00
clean-dist:
rm -rf dist/
2016-06-02 07:56:56 -05:00
.PHONY: docs