nginx-quic/auto/init

54 lines
768 B
Plaintext
Raw Normal View History

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