Skip to content

Latest commit

 

History

History
109 lines (93 loc) · 2.52 KB

Makefile.am

File metadata and controls

109 lines (93 loc) · 2.52 KB
 
May 10, 2002
May 10, 2002
1
2
lib_LTLIBRARIES = libphysfs.la
Jun 14, 2002
Jun 14, 2002
3
4
5
6
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
#SUBDIRS = platform archivers zlib114 . test extras
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
if BUILD_BEOS_CPP
BEOS_SRC = platform/beos.cpp
BEOS_EXTRADIST =
else
BEOS_SRC =
BEOS_EXTRADIST = platform/beos.cpp
endif
May 10, 2002
May 10, 2002
49
50
51
52
53
54
libphysfsincludedir = $(includedir)
libphysfsinclude_HEADERS = \
physfs.h
libphysfs_la_SOURCES = \
Jun 14, 2002
Jun 14, 2002
55
physfs.c \
May 10, 2002
May 10, 2002
56
physfs_internal.h \
Jun 14, 2002
Jun 14, 2002
57
58
59
60
61
62
63
64
65
physfs_byteorder.c \
archivers/dir.c \
archivers/grp.c \
archivers/zip.c \
archivers/unzip.c \
archivers/unzip.h \
platform/unix.c \
platform/posix.c \
$(ZLIB_SRC) $(BEOS_SRC)
May 10, 2002
May 10, 2002
66
Jun 14, 2002
Jun 14, 2002
67
libphysfs_la_INCLUDES = $(ZLIB_INC)
May 10, 2002
May 10, 2002
68
69
70
71
libphysfs_la_LDFLAGS = \
-release $(LT_RELEASE) \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
Jun 14, 2002
Jun 14, 2002
72
73
74
75
76
77
78
79
80
81
82
83
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
May 10, 2002
May 10, 2002
84
85
86
87
88
89
EXTRA_DIST = \
CREDITS \
LICENSE \
CHANGELOG \
INSTALL \
Jun 7, 2002
Jun 7, 2002
90
91
TODO \
Doxyfile \
Jun 11, 2002
Jun 11, 2002
92
93
94
CWProjects.sit \
physfs.dsp \
test_physfs.dsp \
Jun 14, 2002
Jun 14, 2002
95
96
97
98
99
100
101
102
platform/skeleton.c \
platform/macclassic.c \
platform/win32.c \
docs \
extras/physfsrwops.h \
extras/physfsrwops.c \
extras/physfshttpd.c \
$(ZLIB_EXTRADIST) $(BEOS_EXTRADIST) $(TEST_EXTRADIST)
Jun 7, 2002
Jun 7, 2002
103
104
dist-hook:
Jun 8, 2002
Jun 8, 2002
105
rm -rf $(distdir)/docs/*
Jun 14, 2002
Jun 14, 2002
106
107
108
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