22 lines
404 B
Makefile
Executable file
22 lines
404 B
Makefile
Executable file
ASSEMBLY = Sparkles.Git
|
|
TARGET = library
|
|
|
|
LINK = -r:$(DIR_BIN)/Sparkles.dll
|
|
|
|
SOURCES = \
|
|
GitCommand.cs \
|
|
GitFetcher.cs \
|
|
GitRepository.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
|
|
|