view playsound/Makefile.am @ 546:b05e21ca2619

Merged r553:555 from branches/stable-1.0: math.h in shn.c
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 17 Apr 2008 22:33:21 +0000
parents 355129c687b7
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