SparkleShare/SparkleLib/Makefile.am

42 lines
910 B
Makefile
Raw Normal View History

ASSEMBLY = SparkleLib
TARGET = library
if HAVE_SMARTIRC4NET
LINK = $(REF_SPARKLELIB) $(LINK_SMARTIRC4NET_SYSTEM)
else
LINK = $(REF_SPARKLELIB) $(LINK_SMARTIRC4NET_LOCAL)
endif
SOURCES = \
Defines.cs \
Git/SparkleFetcherGit.cs \
Git/SparkleRepoGit.cs \
SparkleBackend.cs \
SparkleChangeSet.cs \
SparkleConfig.cs \
SparkleFetcherBase.cs \
SparkleHelpers.cs \
SparkleListenerBase.cs \
SparkleListenerIrc.cs \
2011-07-04 20:14:44 +00:00
SparkleListenerTcp.cs \
SparkleOptions.cs \
2011-06-14 22:14:03 +00:00
SparkleRepoBase.cs \
SparkleWatcher.cs
2011-05-19 16:05:58 +00:00
SMARTIRC4NET_FILES_EXPANDED = $(foreach file, $(SMARTIRC4NET_FILES), $(top_builddir)/$(file))
EXTRA_BUNDLE = $(SMARTIRC4NET_FILES_EXPANDED)
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