abraunegg-onedrive/Makefile

114 lines
3.3 KiB
Makefile
Raw Normal View History

DC ?= dmd
ifdef PKGCONFIG
LIBS = $(shell pkg-config --libs sqlite3 libcurl)
else
LIBS = -lcurl -lsqlite3
endif
ifdef NOTIFICATIONS
NOTIF_VERSIONS = -version=NoPragma -version=NoGdk -version=Notifications
ifdef PKGCONFIG
LIBS += $(shell pkg-config --libs libnotify)
else
LIBS += -lgmodule-2.0 -lglib-2.0 -lnotify
endif
endif
LIBS += -ldl
# add the necessary prefix for the D compiler
LIBS := $(addprefix -L,$(LIBS))
# support ldc2 which needs -d prefix for version specification
ifeq ($(notdir $(DC)),ldc2)
NOTIF_VERSIONS := $(addprefix -d,$(NOTIF_VERSIONS))
endif
DFLAGS += -w -g -ofonedrive -O $(NOTIF_VERSIONS) $(LIBS) -J.
PREFIX ?= /usr/local
DOCDIR ?= $(PREFIX)/share/doc/onedrive
MANDIR ?= $(PREFIX)/share/man/man1
DOCFILES = README.md README.Office365.md config LICENSE CHANGELOG.md
2015-09-01 20:45:34 +02:00
ifneq ("$(wildcard /etc/redhat-release)","")
RHEL = $(shell cat /etc/redhat-release | grep -E "(Red Hat Enterprise Linux Server|CentOS Linux)" | wc -l)
else
RHEL = 0
endif
2015-09-01 20:45:34 +02:00
SOURCES = \
src/config.d \
2015-09-14 23:56:14 +02:00
src/itemdb.d \
src/log.d \
2015-09-01 20:45:34 +02:00
src/main.d \
2015-09-11 18:33:22 +02:00
src/monitor.d \
2015-09-01 20:45:34 +02:00
src/onedrive.d \
2017-05-28 19:53:39 +02:00
src/qxor.d \
src/selective.d \
2015-09-01 20:45:34 +02:00
src/sqlite.d \
src/sync.d \
src/upload.d \
src/util.d \
src/progress.d
2015-09-01 20:45:34 +02:00
ifdef NOTIFICATIONS
SOURCES += src/notifications/notify.d src/notifications/dnotify.d
endif
all: onedrive onedrive.service onedrive.1
2017-05-29 01:37:09 +02:00
2017-07-14 11:31:16 +02:00
clean:
rm -f onedrive onedrive.o onedrive.service onedrive@.service onedrive.1
2017-07-14 11:31:16 +02:00
onedrive: version $(SOURCES)
$(DC) $(DFLAGS) $(SOURCES)
install.noservice: onedrive onedrive.1
mkdir -p $(DESTDIR)/var/log/onedrive
chown root.users $(DESTDIR)/var/log/onedrive
chmod 0775 $(DESTDIR)/var/log/onedrive
install -D onedrive $(DESTDIR)$(PREFIX)/bin/onedrive
install -D onedrive.1 $(DESTDIR)$(MANDIR)/onedrive.1
install -D -m 644 logrotate/onedrive.logrotate $(DESTDIR)/etc/logrotate.d/onedrive
install: all install.noservice
for i in $(DOCFILES) ; do install -D -m 644 $$i $(DESTDIR)$(DOCDIR)/$$i ; done
ifeq ($(RHEL),1)
mkdir -p $(DESTDIR)/usr/lib/systemd/system/
chown root.root $(DESTDIR)/usr/lib/systemd/system/
chmod 0755 $(DESTDIR)/usr/lib/systemd/system/
install -D -m 644 *.service $(DESTDIR)/usr/lib/systemd/system/
else
mkdir -p $(DESTDIR)/usr/lib/systemd/user/
chown root.root $(DESTDIR)/usr/lib/systemd/user/
chmod 0755 $(DESTDIR)/usr/lib/systemd/user/
install -D -m 644 onedrive.service $(DESTDIR)/usr/lib/systemd/user/
mkdir -p $(DESTDIR)/usr/lib/systemd/system/
chown root.root $(DESTDIR)/usr/lib/systemd/system/
chmod 0755 $(DESTDIR)/usr/lib/systemd/system/
install -D -m 644 onedrive@.service $(DESTDIR)/usr/lib/systemd/system/
endif
install -D -m 644 onedrive.service $(DESTDIR)/usr/lib/systemd/user/onedrive.service
2017-05-29 01:37:09 +02:00
onedrive.service:
sed "s|@PREFIX@|$(PREFIX)|g" systemd.units/onedrive.service.in > onedrive.service
sed "s|@PREFIX@|$(PREFIX)|g" systemd.units/onedrive@.service.in > onedrive@.service
2015-09-22 14:49:20 +02:00
onedrive.1: onedrive.1.in
sed "s|@DOCDIR@|$(DOCDIR)|g" onedrive.1.in > onedrive.1
2015-09-22 14:49:20 +02:00
uninstall:
2017-05-29 01:37:09 +02:00
rm -f $(DESTDIR)$(PREFIX)/bin/onedrive
rm -f $(DESTDIR)/etc/logrotate.d/onedrive
ifeq ($(RHEL),1)
rm -f $(DESTDIR)/usr/lib/systemd/system/onedrive*.service
else
2017-05-29 01:37:09 +02:00
rm -f $(DESTDIR)/usr/lib/systemd/user/onedrive.service
rm -f $(DESTDIR)/usr/lib/systemd/system/onedrive@.service
endif
for i in $(DOCFILES) ; do rm -f $(DESTDIR)$(DOCDIR)/$$i ; done
rm -f $(DESTDIR)$(MANDIR)/onedrive.1
2017-07-14 11:31:16 +02:00
version: .git/HEAD .git/index
echo $(shell git describe --tags) >version