changeset 428:c2a25d2b5784

Fixed physfs source inclusion with "make dist".
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 09 Oct 2002 16:20:04 +0000
parents ba94ffe34a47
children df1839d62fd0
files playsound/Makefile.am
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/playsound/Makefile.am	Wed Oct 09 16:10:11 2002 +0000
+++ b/playsound/Makefile.am	Wed Oct 09 16:20:04 2002 +0000
@@ -4,15 +4,18 @@
 
 if USE_PHYSICSFS
 PHYSFS_CFLG = -DSUPPORT_PHYSFS=1
-PHYSFS_SRCS = physfsrwops.c
+PHYSFS_SRCS = physfsrwops.c physfsrwops.h
 PHYSFS_LIBS = -lphysfs
+EXTRAPHYSFS_SRCS =
 else
 PHYSFS_CFLG =
 PHYSFS_SRCS =
 PHYSFS_LIBS =
+EXTRAPHYSFS_SRCS = physfsrwops.c physfsrwops.h
 endif
 
 playsound_CFLAGS = $(PHYSFS_CFLG)
 playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS)
 playsound_SOURCES = playsound.c $(PHYSFS_SRCS)
 
+EXTRA_DIST = $(EXTRAPHYSFS_SRCS)
\ No newline at end of file