Skip to content

Commit

Permalink
Fixed physfs source inclusion with "make dist".
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 9, 2002
1 parent 5af2a25 commit afedb4a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion playsound/Makefile.am
Expand Up @@ -4,15 +4,18 @@ INCLUDES = -I$(top_srcdir)

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)

0 comments on commit afedb4a

Please sign in to comment.