mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
ccf0b720ba
Original commit message from CVS: * gst/nsf/Makefile.am: * gst/nsf/fds_snd.c: * gst/nsf/mmc5_snd.c: * gst/nsf/nsf.c: * gst/nsf/types.h: * gst/nsf/vrc7_snd.c: * gst/nsf/vrcvisnd.c: * gst/nsf/memguard.c: * gst/nsf/memguard.h: Remove memguard again and apply hopefully all previously dropped local patches. Should be really better than the old version now.
35 lines
571 B
Makefile
35 lines
571 B
Makefile
|
|
plugin_LTLIBRARIES = libgstnsf.la
|
|
|
|
NOSEFART_SOURCES=fmopl.c \
|
|
log.c \
|
|
mmc5_snd.c \
|
|
nes_apu.c \
|
|
vrc7_snd.c \
|
|
fds_snd.c \
|
|
nes6502.c \
|
|
nsf.c \
|
|
vrcvisnd.c
|
|
|
|
NOSEFART_INCLUDES=fmopl.h \
|
|
log.h \
|
|
mmc5_snd.h \
|
|
dis6502.h \
|
|
nes_apu.h \
|
|
osd.h \
|
|
vrc7_snd.h \
|
|
fds_snd.h \
|
|
nes6502.h \
|
|
nsf.h \
|
|
types.h \
|
|
vrcvisnd.h
|
|
|
|
libgstnsf_la_SOURCES = gstnsf.c $(NOSEFART_SOURCES)
|
|
|
|
libgstnsf_la_CFLAGS = $(GST_CFLAGS) -DNSF_PLAYER
|
|
libgstnsf_la_LIBADD = $(GST_LIBS) $(LIBM)
|
|
libgstnsf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstnsf.h $(NOSEFART_INCLUDES)
|
|
|
|
EXTRA_DIST =
|