comparison playsound/Makefile.am @ 428:c2a25d2b5784

Fixed physfs source inclusion with "make dist".
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 09 Oct 2002 16:20:04 +0000
parents 259daddc2d6b
children 35dfa9d9782e
comparison
equal deleted inserted replaced
427:ba94ffe34a47 428:c2a25d2b5784
2 2
3 INCLUDES = -I$(top_srcdir) 3 INCLUDES = -I$(top_srcdir)
4 4
5 if USE_PHYSICSFS 5 if USE_PHYSICSFS
6 PHYSFS_CFLG = -DSUPPORT_PHYSFS=1 6 PHYSFS_CFLG = -DSUPPORT_PHYSFS=1
7 PHYSFS_SRCS = physfsrwops.c 7 PHYSFS_SRCS = physfsrwops.c physfsrwops.h
8 PHYSFS_LIBS = -lphysfs 8 PHYSFS_LIBS = -lphysfs
9 EXTRAPHYSFS_SRCS =
9 else 10 else
10 PHYSFS_CFLG = 11 PHYSFS_CFLG =
11 PHYSFS_SRCS = 12 PHYSFS_SRCS =
12 PHYSFS_LIBS = 13 PHYSFS_LIBS =
14 EXTRAPHYSFS_SRCS = physfsrwops.c physfsrwops.h
13 endif 15 endif
14 16
15 playsound_CFLAGS = $(PHYSFS_CFLG) 17 playsound_CFLAGS = $(PHYSFS_CFLG)
16 playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS) 18 playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS)
17 playsound_SOURCES = playsound.c $(PHYSFS_SRCS) 19 playsound_SOURCES = playsound.c $(PHYSFS_SRCS)
18 20
21 EXTRA_DIST = $(EXTRAPHYSFS_SRCS)