nginx/auto/init

63 lines
909 B
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
# Copyright (C) Igor Sysoev
NGX_MAKEFILE=$NGX_OBJS/Makefile
NGX_MODULES_C=$NGX_OBJS/ngx_modules.c
2003-11-26 04:44:56 +08:00
NGX_AUTO_HEADERS_H=$NGX_OBJS/ngx_auto_headers.h
NGX_AUTO_CONFIG_H=$NGX_OBJS/ngx_auto_config.h
2003-11-26 04:44:56 +08:00
NGX_AUTOTEST=$NGX_OBJS/autotest
NGX_AUTOCONF_ERR=$NGX_OBJS/autoconf.err
2004-02-04 04:27:11 +08:00
# STUBs
OBJS=$NGX_OBJS
NGX_ERR=$OBJS/autoconf.err
MAKEFILE=$OBJS/Makefile
2004-02-10 00:30:01 +08:00
2004-02-04 04:27:11 +08:00
NGX_PCH=
NGX_USE_PCH=
2004-03-05 16:34:24 +08:00
# check the echo's "-n" option and "\c" capability
2004-02-04 04:27:11 +08:00
if echo "test\c" | grep c >/dev/null; then
2004-02-04 04:27:11 +08:00
if echo -n test | grep n >/dev/null; then
ngx_n=
ngx_c=
2004-02-04 04:27:11 +08:00
else
ngx_n=-n
ngx_c=
fi
else
ngx_n=
ngx_c='\c'
fi
# create Makefile
cat << END > Makefile
build:
\$(MAKE) -f $NGX_MAKEFILE
install:
\$(MAKE) -f $NGX_MAKEFILE install
clean:
rm -rf Makefile $NGX_OBJS
upgrade:
$SBIN_PATH -t
kill -USR2 \`cat $PID_PATH\`
sleep 1
test -f $PID_PATH.newbin
kill -WINCH \`cat $PID_PATH\`
END