Mercurial > SDL_sound_CoreAudio
comparison playsound/Makefile.am @ 479:35dfa9d9782e
Fixed automake nonsense.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 12 Nov 2004 08:04:00 +0000 |
parents | c2a25d2b5784 |
children | 1b91006ebfef 355129c687b7 |
comparison
equal
deleted
inserted
replaced
478:15a540505a02 | 479:35dfa9d9782e |
---|---|
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) |