forked from alanmcgovern/monotorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
49 lines (36 loc) · 1.25 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
CONFIG=config.make
XBUILD=xbuild
XBUILD_ARGS=/verbosity:quiet /nologo /property:Configuration=$(MONOTORRENT_PROFILE)
MAIN_SLN=src/MonoTorrent.sln
DIST_FILE=monotorrent-$(MONOTORRENT_VERSION).tar.gz
all:
@echo Building $(MAIN_SLN)
@$(XBUILD) $(XBUILD_ARGS) $(MAIN_SLN)
clean:
@echo Cleaning $(MAIN_SLN)
@$(XBUILD) $(XBUILD_ARGS) $(MAIN_SLN) /t:Clean
dist:
git archive --format=tar HEAD | gzip > $(DIST_FILE)
dist-clean:
rm -f $(DIST_FILE)
dist-check:
install: $(CONFIG)
@echo Installing MonoTorrent libraries
mkdir -p $(DESTDIR)$(MONOTORRENT_INSTALL_DIR)
cp -R build/MonoTorrent/$(MONOTORRENT_PROFILE)/* $(DESTDIR)$(MONOTORRENT_INSTALL_DIR)/
@echo Installing pc files
mkdir -p $(DESTDIR)$(pkgconfigdir)
cp src/MonoTorrent/monotorrent.pc $(DESTDIR)$(pkgconfigdir)/
cp src/MonoTorrent.Dht/monotorrent.dht.pc $(DESTDIR)$(pkgconfigdir)/
uninstall: $(CONFIG)
@echo Removing MonoTorrent libraries
rm -rf $(DESTDIR)/$(libdir)/monotorrent
@echo Removing MonoTorrent pc files
rm -f $(DESTDIR)$(pkgconfigdir)/monotorrent.pc
rm -f $(DESTDIR)$(pkgconfigdir)/monotorrent.dht.pc
$(CONFIG):
@if ! test -e "$(CONFIG)"; then \
echo "You must run configure first" && exit 1; \
fi
include $(CONFIG)
.PHONY: all clean dist dist-clean dist-check install uninstall