mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
24 lines
361 B
Makefile
24 lines
361 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
INCLUDES = -I$(top_srcdir)/include
|
|
|
|
noinst_LIBRARIES = libgrabbag.a
|
|
|
|
libgrabbag_a_SOURCES = \
|
|
file.c \
|
|
replaygain.c \
|
|
seektable.c
|
|
|
|
EXTRA_DIST = \
|
|
Makefile.lite \
|
|
Makefile.vc \
|
|
grabbag.dsp
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|