summaryrefslogtreecommitdiffhomepage
path: root/auto/modules/python/make
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2017-08-17 21:47:19 +0300
committerIgor Sysoev <igor@sysoev.ru>2017-08-17 21:47:19 +0300
commit5ef8e0ee8933e914b1847168255b53f07c3727b3 (patch)
treef4e4b512d86a8a92eeb48c44e54db510660ea4fe /auto/modules/python/make
parent1ba2f44ad9b95670452f31a0923b8a118a08d867 (diff)
downloadunit-5ef8e0ee8933e914b1847168255b53f07c3727b3.tar.gz
unit-5ef8e0ee8933e914b1847168255b53f07c3727b3.tar.bz2
Removing auto/modules directory before commiting the new module
configuration infrastructure.
Diffstat (limited to 'auto/modules/python/make')
-rw-r--r--auto/modules/python/make24
1 files changed, 0 insertions, 24 deletions
diff --git a/auto/modules/python/make b/auto/modules/python/make
deleted file mode 100644
index b405a03a..00000000
--- a/auto/modules/python/make
+++ /dev/null
@@ -1,24 +0,0 @@
-
-# Copyright (C) Valentin V. Bartenev
-# Copyright (C) NGINX, Inc.
-
-
-$echo >> $NXT_MAKEFILE
-$echo >> $NXT_MAKEFILE
-
-
-# The python module object files.
-
-for nxt_src in $NXT_PYTHON_MODULE_SRCS
-do
- nxt_obj=`$echo $nxt_src | sed -e "s/\.c$/\.o/"`
- cat << END >> $NXT_MAKEFILE
-
-$NXT_BUILD_DIR/$nxt_obj: $nxt_src
- \$(CC) -c \$(CFLAGS) \$(NXT_INCS) $NXT_PYTHON_INCLUDE \\
- $NXT_LIB_AUX_CFLAGS \\
- -o $NXT_BUILD_DIR/$nxt_obj \\
- $nxt_src
-END
-
-done