author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 09 Apr 2004 06:36:09 +0000 | |
changeset 631 | 17fdeeaf7b51 |
parent 625 | 60b5f566a258 |
child 709 | 440369665d77 |
permissions | -rw-r--r-- |
298 | 1 |
lib_LTLIBRARIES = libphysfs.la |
2 |
||
602
691c1eadb8b7
Upgraded internal zlib to 1.2.1 (thanks, Adam!)
Ryan C. Gordon <icculus@icculus.org>
parents:
489
diff
changeset
|
3 |
SUBDIRS = platform archivers zlib121 . test extras |
298 | 4 |
|
5 |
libphysfsincludedir = $(includedir) |
|
6 |
libphysfsinclude_HEADERS = \ |
|
7 |
physfs.h |
|
8 |
||
9 |
libphysfs_la_SOURCES = \ |
|
10 |
physfs.c \ |
|
11 |
physfs_internal.h \ |
|
12 |
physfs_byteorder.c |
|
13 |
||
14 |
if BUILD_ZLIB |
|
602
691c1eadb8b7
Upgraded internal zlib to 1.2.1 (thanks, Adam!)
Ryan C. Gordon <icculus@icculus.org>
parents:
489
diff
changeset
|
15 |
ZLIB_LIB = zlib121/libz.la |
298 | 16 |
else |
17 |
ZLIB_LIB = |
|
18 |
endif |
|
19 |
||
20 |
libphysfs_la_LDFLAGS = \ |
|
21 |
-release $(LT_RELEASE) \ |
|
22 |
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
|
23 |
libphysfs_la_LIBADD = \ |
|
24 |
archivers/libarchivers.la \ |
|
25 |
platform/libplatform.la \ |
|
26 |
$(ZLIB_LIB) |
|
27 |
||
28 |
EXTRA_DIST = \ |
|
29 |
CREDITS \ |
|
30 |
LICENSE \ |
|
31 |
CHANGELOG \ |
|
32 |
INSTALL \ |
|
33 |
TODO \ |
|
34 |
Doxyfile \ |
|
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
35 |
PBProjects \ |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
36 |
CWProjects.sitx \ |
489
a4a2b6a44a96
Added RPM spec.in version to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
409
diff
changeset
|
37 |
physfs.spec.in \ |
350
ec1e75681b4b
Added physfs.spec to distribution.
Ryan C. Gordon <icculus@icculus.org>
parents:
304
diff
changeset
|
38 |
physfs.spec \ |
298 | 39 |
physfs.dsp \ |
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
40 |
physfs_static.dsp \ |
409
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
350
diff
changeset
|
41 |
test_physfs.dsp \ |
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
42 |
physfs.vcproj \ |
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
43 |
test_physfs.vcproj \ |
613
fe8897da3695
Added zlib_license_change.txt to EXTRA_DIST.
Ryan C. Gordon <icculus@icculus.org>
parents:
602
diff
changeset
|
44 |
zlib_license_change.txt \ |
409
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
350
diff
changeset
|
45 |
makeos2.cmd |
298 | 46 |
|
47 |
dist-hook: |
|
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
48 |
perl -w -pi -e 'chomp; $$_ .= "\r\n";' $(distdir)/*.dsp $(distdir)/*.vcproj |
303 | 49 |
mkdir $(distdir)/docs |
50 |
echo "Docs are generated with the program "Doxygen" (http://www.doxygen.org/)," >> $(distdir)/docs/README |
|
51 |
echo " or can be read online at http://icculus.org/physfs/docs/" >> $(distdir)/docs/README |
|
52 |
echo >> $(distdir)/docs/README |
|
625
60b5f566a258
Last minute changes, fixes, and build system updates for 1.0.
Ryan C. Gordon <icculus@icculus.org>
parents:
613
diff
changeset
|
53 |
rm -rf `find $(distdir) -name "CVS" -type d` |