nginx/auto/init

54 lines
768 B
Plaintext
Raw Normal View History

2003-11-25 20:44:56 +00:00
# Copyright (C) Igor Sysoev
2012-01-18 15:07:43 +00:00
# Copyright (C) Nginx, Inc.
NGX_MAKEFILE=$NGX_OBJS/Makefile
NGX_MODULES_C=$NGX_OBJS/ngx_modules.c
2003-11-25 20:44:56 +00:00
NGX_AUTO_HEADERS_H=$NGX_OBJS/ngx_auto_headers.h
NGX_AUTO_CONFIG_H=$NGX_OBJS/ngx_auto_config.h
2003-11-25 20:44:56 +00:00
NGX_AUTOTEST=$NGX_OBJS/autotest
NGX_AUTOCONF_ERR=$NGX_OBJS/autoconf.err
2004-02-03 20:27:11 +00:00
# STUBs
NGX_ERR=$NGX_OBJS/autoconf.err
MAKEFILE=$NGX_OBJS/Makefile
2004-02-09 16:30:01 +00:00
2004-02-03 20:27:11 +00:00
NGX_PCH=
NGX_USE_PCH=
2004-03-05 08:34:24 +00:00
# check the echo's "-n" option and "\c" capability
2004-02-03 20:27:11 +00:00
if echo "test\c" | grep c >/dev/null; then
2004-02-03 20:27:11 +00:00
if echo -n test | grep n >/dev/null; then
ngx_n=
ngx_c=
2004-02-03 20:27:11 +00:00
else
ngx_n=-n
ngx_c=
fi
else
ngx_n=
ngx_c='\c'
fi
# create Makefile
cat << END > Makefile
2009-05-17 19:22:08 +00:00
default: build
clean:
rm -rf Makefile $NGX_OBJS
.PHONY: default clean
END