-
Notifications
You must be signed in to change notification settings - Fork 7
/
GNUmakefile
40 lines (34 loc) · 1.15 KB
/
GNUmakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
###########################################################################
#
# This program is part of Zenoss Core, an open source monitoring platform.
# Copyright (C) 2011, Zenoss Inc.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 or (at your
# option) any later version as published by the Free Software Foundation.
#
# For complete information please visit: http://www.zenoss.com/oss/
#
###########################################################################
PYTHON = $(shell which python)
HERE=$(PWD)
SRC_DIR=$(HERE)/src
PG8000_DIR=$(SRC_DIR)/pg8000
ZP_DIR=$(HERE)/ZenPacks/zenoss/PostgreSQL
BIN_DIR=$(ZP_DIR)/bin
LIB_DIR=$(ZP_DIR)/lib
default: egg
egg:
# setup.py will call 'make build' before creating the egg
python setup.py bdist_egg
build:
cd $(PG8000_DIR) ; \
PYTHONPATH="$(PYTHONPATH):$(LIB_DIR)" \
$(PYTHON) setup.py install \
--install-lib="$(LIB_DIR)" \
--install-scripts="$(BIN_DIR)"
clean:
rm -rf build dist *.egg-info
find . -name '*.pyc' -exec rm {} \;
cd $(PG8000_DIR) ; rm -rf build dist *.egg-info
cd $(LIB_DIR) ; rm -rf *.egg-info pg8000