Home | History | Annotate | Download | only in examples
      1 bin_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 
      6 mtp_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
      9 mtp_detect_SOURCES=detect.c util.c util.h common.h
     10 mtp_tracks_SOURCES=tracks.c util.c util.h common.h
     11 mtp_files_SOURCES=files.c util.c util.h common.h
     12 mtp_folders_SOURCES=folders.c util.c util.h common.h
     13 mtp_trexist_SOURCES=trexist.c util.c util.h common.h
     14 mtp_playlists_SOURCES=playlists.c util.c util.h common.h
     15 mtp_getplaylist_SOURCES=getplaylist.c util.c util.h common.h
     16 mtp_newplaylist_SOURCES=newplaylist.c util.c util.h common.h
     17 mtp_format_SOURCES=format.c util.c util.h common.h
     18 mtp_albumart_SOURCES=albumart.c util.c util.h common.h
     19 mtp_albums_SOURCES=albums.c util.c util.h common.h
     20 mtp_emptyfolders_SOURCES=emptyfolders.c util.c util.h common.h
     21 mtp_thumb_SOURCES=thumb.c util.c util.h common.h
     22 mtp_reset_SOURCES=reset.c util.c util.h common.h
     23 mtp_filetree_SOURCES=filetree.c util.c util.h common.h
     24 
     25 AM_CPPFLAGS=-I$(top_builddir)/src
     26 LDADD=../src/libmtp.la
     27 EXTRA_DIST=evolution-sync.sh
     28 
     29 install-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