Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.21 KB

Makefile.am.oldautomake

File metadata and controls

55 lines (48 loc) · 1.21 KB
 
Jun 28, 2002
Jun 28, 2002
1
2
lib_LTLIBRARIES = libphysfs.la
Jul 23, 2005
Jul 23, 2005
3
SUBDIRS = platform archivers zlib123 . test extras
Jun 28, 2002
Jun 28, 2002
4
5
6
7
8
9
10
11
12
13
14
libphysfsincludedir = $(includedir)
libphysfsinclude_HEADERS = \
physfs.h
libphysfs_la_SOURCES = \
physfs.c \
physfs_internal.h \
physfs_byteorder.c
if BUILD_ZLIB
Jul 23, 2005
Jul 23, 2005
15
ZLIB_LIB = zlib123/libz.la
Jun 28, 2002
Jun 28, 2002
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 \
Jan 8, 2004
Jan 8, 2004
35
PBProjects \
Jul 23, 2005
Jul 23, 2005
36
CWProjects.sit \
Jul 23, 2005
Jul 23, 2005
37
physfsMPW.make \
Aug 30, 2002
Aug 30, 2002
38
physfs.spec.in \
Jul 18, 2002
Jul 18, 2002
39
physfs.spec \
Jun 28, 2002
Jun 28, 2002
40
physfs.dsp \
Jan 8, 2004
Jan 8, 2004
41
physfs_static.dsp \
Jul 27, 2002
Jul 27, 2002
42
test_physfs.dsp \
Jan 8, 2004
Jan 8, 2004
43
44
physfs.vcproj \
test_physfs.vcproj \
Dec 19, 2003
Dec 19, 2003
45
zlib_license_change.txt \
Jul 27, 2002
Jul 27, 2002
46
makeos2.cmd
Jun 28, 2002
Jun 28, 2002
47
48
dist-hook:
Jan 8, 2004
Jan 8, 2004
49
perl -w -pi -e 'chomp; $$_ .= "\r\n";' $(distdir)/*.dsp $(distdir)/*.vcproj
Jun 28, 2002
Jun 28, 2002
50
51
52
53
mkdir $(distdir)/docs
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 8, 2004
Jan 8, 2004
54
rm -rf `find $(distdir) -name "CVS" -type d`
Jul 23, 2005
Jul 23, 2005
55
rm -rf `find $(distdir) -name ".svn" -type d`