1
0
mirror of http://mpg123.de/trunk/.git synced 2025-07-30 02:01:12 +03:00

Add dump_seekindex to distribution and example Makefile.

git-svn-id: svn://scm.orgis.org/mpg123/trunk@2672 35dc7657-300d-0410-a2e5-dc2837fedb53
This commit is contained in:
thor
2010-04-27 17:09:48 +00:00
parent 5c77c314dc
commit 5e9399194b
2 changed files with 5 additions and 1 deletions

View File

@ -27,4 +27,5 @@ EXTRA_DIST = \
examples/mpglib.c \
examples/id3dump.c \
examples/feedseek.c \
examples/dump_seekindex.c \
examples/Makefile

View File

@ -1,4 +1,4 @@
targets = feedseek mpg123_to_wav scan id3dump mpglib
targets = feedseek mpg123_to_wav scan id3dump mpglib dump_seekindex
all: $(targets)
@ -26,6 +26,9 @@ scan: scan.c
id3dump:id3dump.c
$(compile) -o id3dump id3dump.c
dump_seekindex: dump_seekindex.c
$(compile) -o dump_seekindex dump_seekindex.c
mpglib: mpglib.c
$(compile) -o mpglib mpglib.c