-
-
Notifications
You must be signed in to change notification settings - Fork 867
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OneDrive Client for Linux v2.5.0 (#2805)
OneDrive Client for Linux v2.5.0 --------- Signed-off-by: Thomas Staudinger <[email protected]> Co-authored-by: JC-comp <[email protected]> Co-authored-by: Dimitri Papadopoulos Orfanos <[email protected]> Co-authored-by: Pierrick Caillon <[email protected]> Co-authored-by: Pierrick Caillon <[email protected]> Co-authored-by: Thomas Staudinger <[email protected]> Co-authored-by: Yuan Liu <[email protected]>
- Loading branch information
1 parent
adad80c
commit a3522fd
Showing
114 changed files
with
23,075 additions
and
15,276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,13 +34,18 @@ DEBUG = @DEBUG@ | |
DC = @DC@ | ||
DC_TYPE = @DC_TYPE@ | ||
DCFLAGS = @DCFLAGS@ | ||
DCFLAGS += -w -g -O -J. | ||
DCFLAGS += -w -J. | ||
ifeq ($(DEBUG),yes) | ||
ifeq ($(DC_TYPE),dmd) | ||
DCFLAGS += -debug -gs | ||
# Add DMD Debugging Flags | ||
DCFLAGS += -g -debug -gs | ||
else | ||
DCFLAGS += -d-debug -gc | ||
# Add LDC Debugging Flags | ||
DCFLAGS += -g -d-debug -gc | ||
endif | ||
else | ||
# Only add optimisation flags if debugging is not enabled | ||
DCFLAGS += -O | ||
endif | ||
|
||
ifeq ($(NOTIFICATIONS),yes) | ||
|
@@ -55,7 +60,7 @@ endif | |
system_unit_files = contrib/systemd/[email protected] | ||
user_unit_files = contrib/systemd/onedrive.service | ||
|
||
DOCFILES = README.md config LICENSE CHANGELOG.md docs/Docker.md docs/INSTALL.md docs/SharePoint-Shared-Libraries.md docs/USAGE.md docs/BusinessSharedFolders.md docs/advanced-usage.md docs/application-security.md | ||
DOCFILES = readme.md config LICENSE changelog.md docs/advanced-usage.md docs/application-config-options.md docs/application-security.md docs/business-shared-items.md docs/client-architecture.md docs/contributing.md docs/docker.md docs/install.md docs/national-cloud-deployments.md docs/podman.md docs/privacy-policy.md docs/sharepoint-libraries.md docs/terms-of-service.md docs/ubuntu-package-install.md docs/usage.md docs/known-issues.md docs/webhooks.md | ||
|
||
ifneq ("$(wildcard /etc/redhat-release)","") | ||
RHEL = $(shell cat /etc/redhat-release | grep -E "(Red Hat Enterprise Linux|CentOS)" | wc -l) | ||
|
@@ -66,19 +71,19 @@ RHEL_VERSION = 0 | |
endif | ||
|
||
SOURCES = \ | ||
src/main.d \ | ||
src/config.d \ | ||
src/itemdb.d \ | ||
src/log.d \ | ||
src/main.d \ | ||
src/monitor.d \ | ||
src/onedrive.d \ | ||
src/util.d \ | ||
src/qxor.d \ | ||
src/selective.d \ | ||
src/sqlite.d \ | ||
src/curlEngine.d \ | ||
src/onedrive.d \ | ||
src/webhook.d \ | ||
src/sync.d \ | ||
src/upload.d \ | ||
src/util.d \ | ||
src/progress.d \ | ||
src/itemdb.d \ | ||
src/sqlite.d \ | ||
src/clientSideFiltering.d \ | ||
src/monitor.d \ | ||
src/arsd/cgi.d | ||
|
||
ifeq ($(NOTIFICATIONS),yes) | ||
|
@@ -92,10 +97,9 @@ clean: | |
rm -rf autom4te.cache | ||
rm -f config.log config.status | ||
|
||
# also remove files generated via ./configure | ||
# Remove files generated via ./configure | ||
distclean: clean | ||
rm -f Makefile contrib/pacman/PKGBUILD contrib/spec/onedrive.spec onedrive.1 \ | ||
$(system_unit_files) $(user_unit_files) | ||
rm -f Makefile contrib/pacman/PKGBUILD contrib/spec/onedrive.spec onedrive.1 $(system_unit_files) $(user_unit_files) | ||
|
||
onedrive: $(SOURCES) | ||
if [ -f .git/HEAD ] ; then \ | ||
|
@@ -132,7 +136,6 @@ ifeq ($(COMPLETIONS),yes) | |
$(INSTALL) -D -m 0644 contrib/completions/complete.fish $(DESTDIR)$(FISH_COMPLETION_DIR)/onedrive.fish | ||
endif | ||
|
||
|
||
uninstall: | ||
rm -f $(DESTDIR)$(bindir)/onedrive | ||
rm -f $(DESTDIR)$(mandir)/man1/onedrive.1 | ||
|
@@ -156,5 +159,3 @@ ifeq ($(COMPLETIONS),yes) | |
rm -f $(DESTDIR)$(BASH_COMPLETION_DIR)/onedrive | ||
rm -f $(DESTDIR)$(FISH_COMPLETION_DIR)/onedrive.fish | ||
endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.