File: makefile.bcc

package info (click to toggle)
nginx 1.28.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,508 kB
  • sloc: ansic: 169,561; sh: 623; perl: 439; python: 240; makefile: 130; cpp: 19
file content (17 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

# Copyright (C) Igor Sysoev
# Copyright (C) Nginx, Inc.


CFLAGS = -q -O2 -tWM -w-8004 -w-8012 $(CPU_OPT)

zlib.lib:
	cd $(ZLIB)

	bcc32 -c $(CFLAGS) adler32.c crc32.c deflate.c \
		trees.c zutil.c compress.c \
		inflate.c inffast.c inftrees.c

	tlib zlib.lib +adler32.obj +crc32.obj +deflate.obj \
		+trees.obj +zutil.obj +compress.obj \
		+inflate.obj +inffast.obj +inftrees.obj