add analyze.c

This commit is contained in:
Josh Coalson 2001-03-16 22:00:41 +00:00
parent de72274e0b
commit a0afc787fa
3 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ bin_PROGRAMS = flac
CFLAGS = @CFLAGS@
flac_SOURCES = \
analyze.c \
decode.c \
encode.c \
main.c

View File

@ -7,6 +7,7 @@ INCLUDES = -I./include -I../../include
LIBS = -lFLAC -lm
OBJS = \
analyze.o \
decode.o \
encode.o \
main.o

View File

@ -9,6 +9,7 @@
!endif
C_FILES= \
analyze.c \
decode.c \
encode.c \
main.c