1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
AUTOMAKE_OPTIONS = nostdinc
bin_PROGRAMS = mp3splt
mp3splt_SOURCES = \
mp3splt.c mp3splt.h \
splt.c splt.h \
mp3.c mp3.h \
wrap.c wrap.h \
cddb.c cddb.h \
audacitylabel.c audacitylabel.h \
ogg.c ogg.h
mp3splt_LDADD = @OGG_LIBS@ @VORBIS_LIBS@
SUBDIRS = doc
EXTRA_DIST = mp3splt.1
man_MANS = mp3splt.1
install-exec-hook:
if DO_SYMLINK
-cd $(DESTDIR)/$(bindir) && $(LN_S) mp3splt oggsplt
endif
uninstall-hook:
if DO_SYMLINK
if [ -L $(DESTDIR)/$(bindir)/oggsplt ]; then \
echo "The $(DESTDIR)/$(bindir)/mpg123 symlink still exists. You may want to remove it."\
fi
endif
|