mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-01 10:02:42 +00:00
da0a22b7ac
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17073 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
776 B
Makefile
21 lines
776 B
Makefile
#===-- runtime/zlib/Makefile.am ----------------------------*- Makefile -*--===#
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file was developed by Reid Spencer and is distributed under the
|
|
# University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
lib_LIBRARIES = libz.a
|
|
libz_a_SOURCES = adler32.c compress.c crc32.c crc32.h deflate.c deflate.h \
|
|
gzio.c infback.c inffast.c inffast.h inffixed.h \
|
|
inflate.c inflate.h inftrees.c inftrees.h trees.c \
|
|
trees.h uncompr.c zconf.h zlib.h zutil.c zutil.h
|
|
|
|
CPPFLAGS = -DNO_DUMMY_DECL=1
|
|
|
|
BYTECODE_LIBRARY = $(lib_LIBRARIES)
|
|
|
|
include $(top_srcdir)/Makefile_config
|