Skip to content

Latest commit

 

History

History
168 lines (144 loc) · 3.49 KB

Makefile.am.newautomake

File metadata and controls

168 lines (144 loc) · 3.49 KB
 
Jun 28, 2002
Jun 28, 2002
1
2
3
4
5
6
lib_LTLIBRARIES = libphysfs.la
libphysfsincludedir = $(includedir)
libphysfsinclude_HEADERS = \
physfs.h
Jun 28, 2002
Jun 28, 2002
7
8
if BUILD_MACOSX
Jul 23, 2005
Jul 23, 2005
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
ZLIB_FILES = zlib123/adler32.c \
zlib123/compress.c \
zlib123/crc32.c \
zlib123/crc32.h \
zlib123/deflate.c \
zlib123/deflate.h \
zlib123/gzio.c \
zlib123/infback.c \
zlib123/inffast.c \
zlib123/inffast.h \
zlib123/inffixed.h \
zlib123/inflate.c \
zlib123/inflate.h \
zlib123/inftrees.c \
zlib123/inftrees.h \
zlib123/trees.c \
zlib123/trees.h \
zlib123/uncompr.c \
zlib123/zconf.h \
zlib123/zlib.h \
zlib123/zutil.c \
zlib123/zutil.h
Jun 28, 2002
Jun 28, 2002
31
32
33
34
if BUILD_ZLIB
ZLIB_SRC = $(ZLIB_FILES)
Jul 23, 2005
Jul 23, 2005
35
ZLIB_INC = -I$(top_srcdir)/zlib123
Jun 28, 2002
Jun 28, 2002
36
37
38
39
40
41
42
43
44
45
46
47
48
ZLIB_EXTRADIST =
else
ZLIB_SRC =
ZLIB_INC =
ZLIB_EXTRADIST = $(ZLIB_FILES)
endif
libphysfs_la_SOURCES = \
physfs.c \
physfs_internal.h \
physfs_byteorder.c \
archivers/dir.c \
archivers/grp.c \
Dec 15, 2003
Dec 15, 2003
49
archivers/wad.c \
Mar 30, 2003
Mar 30, 2003
50
51
archivers/hog.c \
archivers/mvl.c \
Jun 28, 2002
Jun 28, 2002
52
archivers/zip.c \
Aug 9, 2002
Aug 9, 2002
53
archivers/qpak.c \
Apr 9, 2004
Apr 9, 2004
54
archivers/mix.c \
Jun 28, 2002
Jun 28, 2002
55
56
platform/unix.c \
platform/posix.c \
Jun 28, 2002
Jun 28, 2002
57
$(ZLIB_SRC)
Jun 28, 2002
Jun 28, 2002
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
libphysfs_la_INCLUDES = $(ZLIB_INC)
libphysfs_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
if BUILD_TEST_PHYSFS
bin_PROGRAMS = test_physfs
test_physfs_INCLUDES = -I$(top_srcdir)
test_physfs_LDADD = $(top_srcdir)/libphysfs.la
test_physfs_SOURCES = test/test_physfs.c
TEST_EXTRADIST =
else
TEST_EXTRADIST = test/test_physfs.c
endif
EXTRA_DIST = \
CREDITS \
LICENSE \
CHANGELOG \
INSTALL \
TODO \
Doxyfile \
Jul 23, 2005
Jul 23, 2005
84
CWProjects.sit \
Jul 18, 2002
Jul 18, 2002
85
physfs.spec \
Jun 28, 2002
Jun 28, 2002
86
87
physfs.dsp \
test_physfs.dsp \
Jan 8, 2004
Jan 8, 2004
88
89
90
physfs_static.dsp \
physfs.vcproj \
test_physfs.vcproj \
Jun 28, 2002
Jun 28, 2002
91
92
93
platform/skeleton.c \
platform/macclassic.c \
platform/win32.c \
Jun 28, 2002
Jun 28, 2002
94
platform/beos.cpp \
Jul 27, 2002
Jul 27, 2002
95
platform/os2.c \
Jun 28, 2002
Jun 28, 2002
96
97
98
extras/physfsrwops.h \
extras/physfsrwops.c \
extras/physfshttpd.c \
Jun 28, 2002
Jun 28, 2002
99
100
Makefile.am.oldautomake \
Makefile.am.newautomake \
Dec 19, 2003
Dec 19, 2003
101
zlib_license_change.txt \
Jul 27, 2002
Jul 27, 2002
102
makeos2.cmd \
Jan 8, 2004
Jan 8, 2004
103
PBProjects \
Jun 28, 2002
Jun 28, 2002
104
$(ZLIB_EXTRADIST) $(BEOS_EXTRADIST) $(TEST_EXTRADIST)
Jun 28, 2002
Jun 28, 2002
105
106
107
else
Apr 11, 2006
Apr 11, 2006
108
SUBDIRS = platform archivers zlib123 lzma . test extras
Jun 28, 2002
Jun 28, 2002
109
Jun 28, 2002
Jun 28, 2002
110
111
112
113
114
115
libphysfs_la_SOURCES = \
physfs.c \
physfs_internal.h \
physfs_byteorder.c
if BUILD_ZLIB
Jul 23, 2005
Jul 23, 2005
116
ZLIB_LIB = zlib123/libz.la
Jun 28, 2002
Jun 28, 2002
117
118
119
120
else
ZLIB_LIB =
endif
Apr 11, 2006
Apr 11, 2006
121
122
123
124
125
126
if BUILD_LZMA
LZMA_LIB = lzma/liblzma.la
else
LZMA_LIB =
endif
Jun 28, 2002
Jun 28, 2002
127
128
129
130
131
132
libphysfs_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libphysfs_la_LIBADD = \
archivers/libarchivers.la \
platform/libplatform.la \
Apr 11, 2006
Apr 11, 2006
133
134
$(ZLIB_LIB) \
$(LZMA_LIB)
Jun 28, 2002
Jun 28, 2002
135
136
137
138
139
140
141
142
EXTRA_DIST = \
CREDITS \
LICENSE \
CHANGELOG \
INSTALL \
TODO \
Doxyfile \
Jan 8, 2004
Jan 8, 2004
143
PBProjects \
Jul 23, 2005
Jul 23, 2005
144
CWProjects.sit \
Jul 23, 2005
Jul 23, 2005
145
physfsMPW.make \
Aug 30, 2002
Aug 30, 2002
146
physfs.spec.in \
Jul 18, 2002
Jul 18, 2002
147
physfs.spec \
Jun 28, 2002
Jun 28, 2002
148
physfs.dsp \
Jul 27, 2002
Jul 27, 2002
149
test_physfs.dsp \
Jan 8, 2004
Jan 8, 2004
150
151
152
physfs_static.dsp \
physfs.vcproj \
test_physfs.vcproj \
Dec 19, 2003
Dec 19, 2003
153
zlib_license_change.txt \
Jul 27, 2002
Jul 27, 2002
154
makeos2.cmd
Jun 28, 2002
Jun 28, 2002
155
Jun 28, 2002
Jun 28, 2002
156
157
158
endif
Jun 28, 2002
Jun 28, 2002
159
Jun 28, 2002
Jun 28, 2002
160
dist-hook:
Jan 8, 2004
Jan 8, 2004
161
perl -w -pi -e 'chomp; $$_ .= "\r\n";' $(distdir)/*.dsp $(distdir)/*.vcproj
Jun 28, 2002
Jun 28, 2002
162
mkdir $(distdir)/docs
Jun 28, 2002
Jun 28, 2002
163
164
165
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README
echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README
echo >> $(distdir)/docs/README
Jan 5, 2003
Jan 5, 2003
166
rm -rf `find $(distdir) -name "CVS" -type d`
Jul 23, 2005
Jul 23, 2005
167
rm -rf `find $(distdir) -name ".svn" -type d`