mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2025-01-03 14:56:35 -05:00
35f54caeba
git-svn-id: https://svn.xiph.org/trunk/ezstream@5800 0101bb08-14d6-0310-b084-bc0e0c8e3800
22 lines
366 B
Makefile
22 lines
366 B
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
bin_PROGRAMS = ezstream
|
|
|
|
ezstream_SOURCES = ezstream.c configfile.c
|
|
ezstream_LDADD = @XIPH_LIBS@
|
|
|
|
AM_CFLAGS = @XIPH_CFLAGS@
|
|
AM_CPPFLAGS = @XIPH_CPPFLAGS@
|
|
|
|
EXTRA_DIST = getopt.c getopt.h configfile.h
|
|
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|