# HG changeset patch # User Ryan C. Gordon # Date 1034180404 0 # Node ID c2a25d2b578456394f835c47a4e2fbd94698103e # Parent ba94ffe34a4777984ed10c0594f6fa6ee6a03a56 Fixed physfs source inclusion with "make dist". diff -r ba94ffe34a47 -r c2a25d2b5784 playsound/Makefile.am --- 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