Changeset 3528
- Timestamp:
- Oct 24, 2007, 5:20:50 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r3340 r3528 1 1 ACLOCAL_AMFLAGS = -I m4 2 2 3 if WITH_GTK4 GTK_DIR = gtk po5 endif6 3 if HAVE_BEOS 7 4 BEOS_DIR = beos … … 10 7 MAC_DIR = macosx 11 8 endif 9 if WITH_GTK 10 GTK_DIR = gtk po 11 endif 12 12 if HAVE_WX 13 13 WX_DIR = wx 14 14 endif 15 15 16 SUBDIRS = third-party libtransmission daemon cli $(GTK_DIR) $(BEOS_DIR) $(MAC_DIR) $(WX_DIR) 16 SUBDIRS = \ 17 third-party \ 18 libtransmission \ 19 daemon cli \ 20 $(BEOS_DIR) \ 21 $(GTK_DIR) \ 22 $(MAC_DIR) \ 23 $(WX_DIR) 17 24 18 25 EXTRA_DIST = \ 19 NEWS \ 20 AUTHORS \ 21 LICENSE \ 22 README \ 23 third-party \ 24 intltool-extract.in \ 25 intltool-merge.in \ 26 intltool-update.in 26 NEWS \ 27 AUTHORS \ 28 LICENSE \ 29 README \ 30 intltool-extract.in \ 31 intltool-merge.in \ 32 intltool-update.in 33 34 DISTCLEANFILES = \ 35 intltool-extract \ 36 intltool-merge \ 37 intltool-update 38 -
trunk/configure.ac
r3523 r3528 203 203 daemon/Makefile 204 204 libtransmission/Makefile 205 libtransmission/version.h206 205 third-party/Makefile 207 206 macosx/Makefile -
trunk/gtk/Makefile.am
r3523 r3528 68 68 $(DESKTOP_IN_FILES) \ 69 69 transmission.png 70 71 DISTCLEANFILES = \ 72 transmission.desktop 73 -
trunk/libtransmission/Makefile.am
r3169 r3528 4 4 5 5 noinst_LIBRARIES = libtransmission.a 6 7 EXTRA_DIST = version.h.in8 6 9 7 libtransmission_a_SOURCES = \ … … 76 74 upnp.h \ 77 75 utils.h \ 76 version.h \ 78 77 xml.h 78 79 EXTRA_DIST = \ 80 version.h.in 81 82 do_subst = sed \ 83 -e 's,[@]PEERID_PREFIX[@],$(PEERID_PREFIX),g' \ 84 -e 's,[@]USERAGENT_PREFIX[@],$(USERAGENT_PREFIX),g' \ 85 -e 's,[@]SVN_REVISION[@],$(SVN_REVISION),g' \ 86 -e 's,[@]SHORT_VERSION_STRING[@],$(SHORT_VERSION_STRING),g' \ 87 -e 's,[@]LONG_VERSION_STRING[@],$(LONG_VERSION_STRING),g' 88 89 version.h: version.h.in 90 $(do_subst) < $(srcdir)/version.h.in > version.h 91 92 CLEANFILES = \ 93 version.h -
trunk/libtransmission/transmission.h
r3486 r3528 30 30 #endif 31 31 32 #include "version.h"32 #include <libtransmission/version.h> 33 33 34 34 #include <inttypes.h> -
trunk/macosx/Makefile.am
r3524 r3528 13 13 it.lproj \ 14 14 ko.lproj \ 15 ru.lproj \ 16 nl.lproj 15 AboutWindowController.h \ 16 AboutWindowController.m \ 17 ActionMenuRatioToDisplayRatioTransformer.h \ 18 ActionMenuRatioToDisplayRatioTransformer.m \ 19 ActionMenuSpeedToDisplayLimitTransformer.h \ 20 ActionMenuSpeedToDisplayLimitTransformer.m \ 21 ActionPopUpButton.h \ 22 ActionPopUpButton.m \ 23 Badger.h \ 24 Badger.m \ 25 Controller.h \ 26 Controller.m \ 27 CreatorWindowController.h \ 28 CreatorWindowController.m \ 29 DragOverlayView.h \ 30 DragOverlayView.m \ 31 DragOverlayWindow.h \ 32 DragOverlayWindow.m \ 33 ExpandedPathToIconTransformer.h \ 34 ExpandedPathToIconTransformer.m \ 35 ExpandedPathToPathTransformer.h \ 36 ExpandedPathToPathTransformer.m \ 37 FileNameCell.h \ 38 FileNameCell.m \ 39 FileOutlineView.h \ 40 FileOutlineView.m \ 41 FilePriorityCell.h \ 42 FilePriorityCell.m \ 43 FilterBarButton.h \ 44 FilterBarButton.m \ 45 FilterBarView.h \ 46 FilterBarView.m \ 47 ImageBackgroundView.h \ 48 ImageBackgroundView.m \ 49 InfoTabButtonCell.h \ 50 InfoTabButtonCell.m \ 51 InfoWindowController.h \ 52 InfoWindowController.m \ 53 IPCController.h \ 54 IPCController.m \ 55 main.m \ 56 MessageWindowController.h \ 57 MessageWindowController.m \ 58 NSBezierPathAdditions.h \ 59 NSBezierPathAdditions.m \ 60 NSMenuAdditions.h \ 61 NSMenuAdditions.m \ 62 NSStringAdditions.h \ 63 NSStringAdditions.m \ 64 PeerProgressIndicatorCell.h \ 65 PeerProgressIndicatorCell.m \ 66 PeerTableView.h \ 67 PeerTableView.m \ 68 PiecesView.h \ 69 PiecesView.m \ 70 PortChecker.h \ 71 PortChecker.m \ 72 PrefsController.h \ 73 PrefsController.m \ 74 PrefsWindow.h \ 75 PrefsWindow.m \ 76 SpeedLimitToTurtleIconTransformer.h \ 77 SpeedLimitToTurtleIconTransformer.m \ 78 StatusBarView.h \ 79 StatusBarView.m \ 80 TorrentCell.h \ 81 TorrentCell.m \ 82 Torrent.h \ 83 Torrent.m \ 84 TorrentTableView.h \ 85 TorrentTableView.m 17 86 18 87 # Use Xcode do make the actual build -
trunk/third-party/Makefile.am
r3329 r3528 1 1 SUBDIRS = libevent 2 2 3 EXTRA_DIST = \ 4 macosx-libevent-config.h 5 3 6 install:
Note: See TracChangeset
for help on using the changeset viewer.