Annotation of embedaddon/nginx/auto/lib/pcre/makefile.owc, revision 1.1.1.1

1.1       misho       1: 
                      2: # Copyright (C) Igor Sysoev
                      3: # Copyright (C) Nginx, Inc.
                      4: 
                      5: 
                      6: CFLAGS =       -c -zq -bt=nt -ot -op -oi -oe -s -bm $(CPU_OPT)
                      7: PCREFLAGS =    -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10
                      8: 
                      9: 
                     10: pcre.lib:
                     11:        cd $(PCRE)
                     12: 
                     13:        wcl386 $(CFLAGS) -i=. $(PCREFLAGS) pcre_*.c
                     14: 
                     15:        dir /b *.obj > pcre.lst
                     16: 
                     17:        wlib -n pcre.lib @pcre.lst
                     18: 
                     19: pcre.h:
                     20:        cd $(PCRE)
                     21: 
                     22:        copy /y pcre.h.generic pcre.h
                     23:        copy /y config.h.generic config.h
                     24:        copy /y pcre_chartables.c.dist pcre_chartables.c

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>