1bin_PROGRAMS=mtp-connect mtp-detect mtp-tracks mtp-files \ 2 mtp-folders mtp-trexist mtp-playlists mtp-getplaylist \ 3 mtp-format mtp-albumart mtp-albums mtp-newplaylist mtp-emptyfolders \ 4 mtp-thumb mtp-reset mtp-filetree 5 6mtp_connect_SOURCES=connect.c connect.h delfile.c getfile.c newfolder.c \ 7 sendfile.c sendtr.c pathutils.c pathutils.h \ 8 util.c util.h common.h 9mtp_detect_SOURCES=detect.c util.c util.h common.h 10mtp_tracks_SOURCES=tracks.c util.c util.h common.h 11mtp_files_SOURCES=files.c util.c util.h common.h 12mtp_folders_SOURCES=folders.c util.c util.h common.h 13mtp_trexist_SOURCES=trexist.c util.c util.h common.h 14mtp_playlists_SOURCES=playlists.c util.c util.h common.h 15mtp_getplaylist_SOURCES=getplaylist.c util.c util.h common.h 16mtp_newplaylist_SOURCES=newplaylist.c util.c util.h common.h 17mtp_format_SOURCES=format.c util.c util.h common.h 18mtp_albumart_SOURCES=albumart.c util.c util.h common.h 19mtp_albums_SOURCES=albums.c util.c util.h common.h 20mtp_emptyfolders_SOURCES=emptyfolders.c util.c util.h common.h 21mtp_thumb_SOURCES=thumb.c util.c util.h common.h 22mtp_reset_SOURCES=reset.c util.c util.h common.h 23mtp_filetree_SOURCES=filetree.c util.c util.h common.h 24 25AM_CPPFLAGS=-I$(top_builddir)/src 26LDADD=../src/libmtp.la 27EXTRA_DIST=evolution-sync.sh 28 29install-exec-hook: 30 ln -f -s mtp-connect$(EXEEXT) $(DESTDIR)$(bindir)/mtp-delfile$(EXEEXT) 31 ln -f -s mtp-connect$(EXEEXT) $(DESTDIR)$(bindir)/mtp-getfile$(EXEEXT) 32 ln -f -s mtp-connect$(EXEEXT) $(DESTDIR)$(bindir)/mtp-newfolder$(EXEEXT) 33 ln -f -s mtp-connect$(EXEEXT) $(DESTDIR)$(bindir)/mtp-sendfile$(EXEEXT) 34 ln -f -s mtp-connect$(EXEEXT) $(DESTDIR)$(bindir)/mtp-sendtr$(EXEEXT) 35