Skip to content

Latest commit

 

History

History
148 lines (125 loc) · 3.1 KB

Makefile.am.newautomake

File metadata and controls

148 lines (125 loc) · 3.1 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
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
if BUILD_MACOSX
ZLIB_FILES = zlib114/adler32.c \
zlib114/compress.c \
zlib114/crc32.c \
zlib114/deflate.c \
zlib114/deflate.h \
zlib114/infblock.c \
zlib114/infblock.h \
zlib114/infcodes.c \
zlib114/infcodes.h \
zlib114/inffast.c \
zlib114/inffast.h \
zlib114/inffixed.h \
zlib114/inflate.c \
zlib114/inftrees.c \
zlib114/inftrees.h \
zlib114/infutil.c \
zlib114/infutil.h \
zlib114/trees.c \
zlib114/trees.h \
zlib114/uncompr.c \
zlib114/zconf.h \
zlib114/zlib.h \
zlib114/zutil.c \
zlib114/zutil.h
if BUILD_ZLIB
ZLIB_SRC = $(ZLIB_FILES)
ZLIB_INC = -I$(top_srcdir)/zlib114
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 \
Mar 30, 2003
Mar 30, 2003
51
52
archivers/hog.c \
archivers/mvl.c \
Jun 28, 2002
Jun 28, 2002
53
archivers/zip.c \
Aug 9, 2002
Aug 9, 2002
54
archivers/qpak.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
84
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 \
CWProjects.sit \
Jul 18, 2002
Jul 18, 2002
85
physfs.spec \
Jun 28, 2002
Jun 28, 2002
86
87
88
89
90
physfs.dsp \
test_physfs.dsp \
platform/skeleton.c \
platform/macclassic.c \
platform/win32.c \
Jun 28, 2002
Jun 28, 2002
91
platform/beos.cpp \
Jul 27, 2002
Jul 27, 2002
92
platform/os2.c \
Jun 28, 2002
Jun 28, 2002
93
94
95
extras/physfsrwops.h \
extras/physfsrwops.c \
extras/physfshttpd.c \
Jun 28, 2002
Jun 28, 2002
96
97
Makefile.am.oldautomake \
Makefile.am.newautomake \
Jul 27, 2002
Jul 27, 2002
98
makeos2.cmd \
Jun 28, 2002
Jun 28, 2002
99
$(ZLIB_EXTRADIST) $(BEOS_EXTRADIST) $(TEST_EXTRADIST)
Jun 28, 2002
Jun 28, 2002
100
101
102
103
104
else
SUBDIRS = platform archivers zlib114 . test extras
Jun 28, 2002
Jun 28, 2002
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
libphysfs_la_SOURCES = \
physfs.c \
physfs_internal.h \
physfs_byteorder.c
if BUILD_ZLIB
ZLIB_LIB = zlib114/libz.la
else
ZLIB_LIB =
endif
libphysfs_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libphysfs_la_LIBADD = \
archivers/libarchivers.la \
platform/libplatform.la \
$(ZLIB_LIB)
EXTRA_DIST = \
CREDITS \
LICENSE \
CHANGELOG \
INSTALL \
TODO \
Doxyfile \
CWProjects.sit \
Aug 30, 2002
Aug 30, 2002
132
physfs.spec.in \
Jul 18, 2002
Jul 18, 2002
133
physfs.spec \
Jun 28, 2002
Jun 28, 2002
134
physfs.dsp \
Jul 27, 2002
Jul 27, 2002
135
136
test_physfs.dsp \
makeos2.cmd
Jun 28, 2002
Jun 28, 2002
137
Jun 28, 2002
Jun 28, 2002
138
139
140
endif
Jun 28, 2002
Jun 28, 2002
141
Jun 28, 2002
Jun 28, 2002
142
dist-hook:
Jun 28, 2002
Jun 28, 2002
143
mkdir $(distdir)/docs
Jun 28, 2002
Jun 28, 2002
144
145
146
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
147
rm -rf `find $(distdir) -name "CVS" -type d`