Skip to content

Commit

Permalink
Initial add.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jun 28, 2002
1 parent 03aebe8 commit 4366ff0
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
42 changes: 42 additions & 0 deletions Makefile.am.newautomake
@@ -0,0 +1,42 @@
lib_LTLIBRARIES = libphysfs.la

SUBDIRS = platform archivers zlib114 . test extras

libphysfsincludedir = $(includedir)
libphysfsinclude_HEADERS = \
physfs.h

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 \
physfs.dsp \
test_physfs.dsp \
docs

dist-hook:
rm -rf $(distdir)/docs/*

42 changes: 42 additions & 0 deletions Makefile.am.oldautomake
@@ -0,0 +1,42 @@
lib_LTLIBRARIES = libphysfs.la

SUBDIRS = platform archivers zlib114 . test extras

libphysfsincludedir = $(includedir)
libphysfsinclude_HEADERS = \
physfs.h

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 \
physfs.dsp \
test_physfs.dsp \
docs

dist-hook:
rm -rf $(distdir)/docs/*

0 comments on commit 4366ff0

Please sign in to comment.