comparison playsound/Makefile.am @ 288:259daddc2d6b

PhysicsFS support tied into build system.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 16 Mar 2002 08:48:00 +0000
parents 7e74765ad928
children c2a25d2b5784
comparison
equal deleted inserted replaced
287:2444b4128efd 288:259daddc2d6b
1 bin_PROGRAMS = playsound 1 bin_PROGRAMS = playsound
2 2
3 INCLUDES = -I$(top_srcdir) 3 INCLUDES = -I$(top_srcdir)
4 4
5 playsound_LDADD = ../libSDL_sound.la 5 if USE_PHYSICSFS
6 PHYSFS_CFLG = -DSUPPORT_PHYSFS=1
7 PHYSFS_SRCS = physfsrwops.c
8 PHYSFS_LIBS = -lphysfs
9 else
10 PHYSFS_CFLG =
11 PHYSFS_SRCS =
12 PHYSFS_LIBS =
13 endif
14
15 playsound_CFLAGS = $(PHYSFS_CFLG)
16 playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS)
17 playsound_SOURCES = playsound.c $(PHYSFS_SRCS)
18