Mercurial > SDL_sound_CoreAudio
comparison playsound/Makefile.am @ 488:b8f694c12010 stable-1.0
Backport from devtree: Fixed automake nonsense.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 30 May 2005 20:13:26 +0000 |
parents | c2a25d2b5784 |
children | 1b91006ebfef 355129c687b7 |
comparison
equal
deleted
inserted
replaced
481:3f03af31e246 | 488:b8f694c12010 |
---|---|
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 physfsrwops.h | |
8 PHYSFS_LIBS = -lphysfs | 7 PHYSFS_LIBS = -lphysfs |
9 EXTRAPHYSFS_SRCS = | |
10 else | 8 else |
11 PHYSFS_CFLG = | 9 PHYSFS_CFLG = |
12 PHYSFS_SRCS = | 10 PHYSFS_SRCS = |
13 PHYSFS_LIBS = | 11 PHYSFS_LIBS = |
14 EXTRAPHYSFS_SRCS = physfsrwops.c physfsrwops.h | |
15 endif | 12 endif |
16 | 13 |
17 playsound_CFLAGS = $(PHYSFS_CFLG) | 14 playsound_CFLAGS = $(PHYSFS_CFLG) |
18 playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS) | 15 playsound_LDADD = ../libSDL_sound.la $(PHYSFS_LIBS) |
19 playsound_SOURCES = playsound.c $(PHYSFS_SRCS) | 16 playsound_SOURCES = playsound.c physfsrwops.c physfsrwops.h |
20 | |
21 EXTRA_DIST = $(EXTRAPHYSFS_SRCS) |