blob: 6c6671c42ebf6379ff9572457eb28d152b2177cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# $NetBSD: libz.config,v 1.9 2011/09/23 16:00:15 nonaka Exp $
# config file/script to generate project file (.dsp/.vcp) for libz
TYPE=static_library
NAME='libz'
SRCFILE_LIST='
../../../../../common/dist/zlib/adler32.c
../../../../../common/dist/zlib/crc32.c
../../../../../common/dist/zlib/inffast.c
../../../../../common/dist/zlib/inflate.c
../../../../../common/dist/zlib/inftrees.c
../../../../../common/dist/zlib/uncompr.c
zalloc.c
'
CPPDEF_LIST='
_STANDALONE
__STDC__
__COMPILER_INT64__=__int64
__COMPILER_UINT64__="unsigned#__int64"
__VA_LIST_DECLARED
__builtin_va_list="char#*"
'
INCDIR_LIST='
.
../../../../../common/dist/zlib
../include
../../../..
'
LIBDEP_LIST=''
LIBRARY_LIST=''
|