view playsound/Makefile.am @ 556:1c7d570fcee8 stable-1.0

Abandoning CHANGELOG.
author Ryan C. Gordon <icculus@icculus.org>
date Tue, 27 Jan 2009 14:09:55 -0500
parents 1b91006ebfef
children
line wrap: on
line source

bin_PROGRAMS = playsound playsound_simple

INCLUDES = -I$(top_srcdir)

if USE_PHYSICSFS
PHYSFS_CFLG = -DSUPPORT_PHYSFS=1
PHYSFS_LIBS = -lphysfs
else
PHYSFS_CFLG =
PHYSFS_SRCS =
PHYSFS_LIBS =
endif

playsound_CFLAGS = $(PHYSFS_CFLG)
playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS)
playsound_SOURCES = playsound.c physfsrwops.c physfsrwops.h

playsound_simple_LDADD = ../libSDL_sound.la
playsound_simple_SOURCES = playsound_simple.c