source: rtems/cpukit/zlib/Makefile.am @ 2d7ae960

4.115
Last change on this file since 2d7ae960 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 922 bytes
Line 
1include $(top_srcdir)/automake/compile.am
2
3project_lib_LIBRARIES = libz.a
4
5libz_a_SOURCES = adler32.c
6libz_a_SOURCES += compress.c
7libz_a_SOURCES += crc32.c crc32.h
8libz_a_SOURCES += deflate.c deflate.h
9libz_a_SOURCES += gzclose.c gzguts.h gzlib.c gzread.c gzwrite.c
10libz_a_SOURCES += infback.c
11libz_a_SOURCES += inffast.c inffast.h
12libz_a_SOURCES += inffixed.h
13libz_a_SOURCES += inflate.c inflate.h
14libz_a_SOURCES += inftrees.c inftrees.h
15libz_a_SOURCES += trees.c trees.h
16libz_a_SOURCES += uncompr.c
17libz_a_SOURCES += zconf.h
18libz_a_SOURCES += zlib.h
19libz_a_SOURCES += zutil.c zutil.h
20
21include_HEADERS = zlib.h zconf.h
22
23zconf.h: $(srcdir)/zconf.h.in
24        sed \
25          -e 's,#ifdef Z_PREFIX.* may be ,#if 1 /* was ,' \
26          -e 's,#ifdef HAVE_UNISTD_H.* may be ,#if 1 /* was ,' \
27        < $(srcdir)/zconf.h.in > zconf.h
28CLEANFILES = zconf.h
29EXTRA_DIST = zconf.h.in
30
31include $(srcdir)/preinstall.am
32include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.