SparkleShare/SparkleLib/Makefile.am

34 lines
659 B
Makefile
Raw Normal View History

ASSEMBLY = SparkleLib
TARGET = library
ASSEMBLY_INFO_SOURCE = Defines.cs
SOURCES = \
Defines.cs \
SparkleBackend.cs \
SparkleConfig.cs \
SparkleExceptions.cs \
SparkleExtensions.cs \
SparkleFetcherBase.cs \
SparkleListenerBase.cs \
SparkleListenerFactory.cs \
2011-07-04 20:14:44 +00:00
SparkleListenerTcp.cs \
2012-07-28 13:58:09 +00:00
SparkleLogger.cs \
2011-06-14 22:14:03 +00:00
SparkleRepoBase.cs \
SparkleUser.cs \
2012-06-19 14:59:54 +00:00
SparkleWatcher.cs \
SparkleWrappers.cs
2011-05-19 16:05:58 +00:00
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