SparkleShare/SparkleLib/Makefile.am
Bertrand Lorentz 8ac0b8c71d [build] Fix handling of the SmartIrc4net assembly
Pass the proper configure options to SmartIrc4net for bundling.
The SmartIrc4net assembly is now copied into bin/ during compilation,
and installed into the same folder as the other assemblies.
2010-09-11 19:58:59 +02:00

33 lines
708 B
Makefile

ASSEMBLY = SparkleLib
TARGET = library
LINK = $(REF_SPARKLELIB)
SOURCES = \
Defines.cs \
SparkleCommit.cs \
SparkleEvents.cs \
SparkleFetcher.cs \
SparkleHelpers.cs \
SparkleListener.cs \
SparkleOptions.cs \
SparklePaths.cs \
SparklePlatform.cs \
SparkleRepo.cs
SMARTIRC4NET_FILES_EXPANDED = $(foreach file, $(SMARTIRC4NET_FILES), $(top_builddir)/$(file))
EXTRA_BUNDLE = $(SMARTIRC4NET_FILES_EXPANDED)
install-data-hook:
for ASM in $(SMARTIRC4NET_FILES_EXPANDED); do \
$(INSTALL) -m 0755 $$ASM $(DESTDIR)$(moduledir); \
done;
uninstall-hook:
for ASM in $(SMARTIRC4NET_FILES_EXPANDED); do \
rm -f $(DESTDIR)$(moduledir)/`basename $$ASM`; \
done;
include $(top_srcdir)/build/build.mk