view playsound/Makefile.am @ 458:69c8ba97f4bd

Fixed memory corruption when freeing DLS instruments
author hercules
date Sun, 05 Oct 2003 23:33:11 +0000
parents c2a25d2b5784
children 35dfa9d9782e
line wrap: on
line source

bin_PROGRAMS = playsound

INCLUDES = -I$(top_srcdir)

if USE_PHYSICSFS
PHYSFS_CFLG = -DSUPPORT_PHYSFS=1
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)