SparkleShare/Sparkles/Makefile.am

39 lines
704 B
Makefile
Raw Normal View History

2016-03-31 08:35:26 +00:00
ASSEMBLY = Sparkles
TARGET = library
2016-03-31 08:35:26 +00:00
ASSEMBLY_INFO_SOURCE = InstallationInfo.Directory.cs
SOURCES = \
2016-03-26 15:59:43 +00:00
AuthenticationInfo.cs \
2016-03-31 08:35:26 +00:00
InstallationInfo.cs \
2016-03-30 23:36:31 +00:00
BaseFetcher.cs \
BaseListener.cs \
BaseRepository.cs \
2016-03-30 23:56:48 +00:00
ChangeSet.cs \
2016-03-30 23:36:31 +00:00
Command.cs \
2016-03-30 23:56:48 +00:00
Configuration.cs \
2016-03-30 23:36:31 +00:00
Extensions.cs \
2016-04-01 08:15:47 +00:00
Invite.cs \
2016-03-30 23:36:31 +00:00
ListenerFactory.cs \
Logger.cs \
2016-03-31 08:35:26 +00:00
Preset.cs \
2016-03-26 15:59:43 +00:00
SSHAuthenticationInfo.cs \
2017-04-15 07:37:16 +00:00
SSHCommand.cs \
2016-03-30 23:36:31 +00:00
SSHFetcher.cs \
TcpListener.cs \
User.cs \
2016-03-30 23:56:48 +00:00
Watcher.cs
install-data-hook:
for ASM in $(EXTRA_BUNDLE); do \
$(INSTALL) -m 0755 $$ASM $(DESTDIR)$(moduledir); \
done;
uninstall-hook:
for ASM in $(EXTRA_BUNDLE); do \
rm -f $(DESTDIR)$(moduledir)/`basename $$ASM`; \
done;
include $(top_srcdir)/build/build.mk
2016-03-31 08:35:26 +00:00