osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-gsm-manuals/+/31960 )
Change subject: build/Makefile.common: move clean/distclean down ......................................................................
build/Makefile.common: move clean/distclean down
Group upload and publish closer together by moving the clean targets to the bottom.
Related: SYS#6380 Change-Id: Id8b6ead89a2aeba28e9c55bcfde6564376e8418a --- M build/Makefile.common.inc 1 file changed, 18 insertions(+), 5 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-gsm-manuals refs/changes/60/31960/1
diff --git a/build/Makefile.common.inc b/build/Makefile.common.inc index a53e26e..bdc3817 100644 --- a/build/Makefile.common.inc +++ b/build/Makefile.common.inc @@ -24,11 +24,6 @@ upload: $(UPLOAD_FILES) rsync -avz $(UPLOAD_FILES) $(UPLOAD_PATH)/
-clean: - -rm -rf $(CLEAN_FILES) - -distclean: clean - # Publish to https://ftp.osmocom.org/docs/ publish: $(UPLOAD_FILES) [ -n "$(OSMO_REPOSITORY)" ] || exit 1 @@ -64,3 +59,8 @@ rm -v "$(DESTDIR)$(prefix)/share/doc/$(OSMO_REPOSITORY)-doc/$$i"; \ done; \ fi + +clean: + -rm -rf $(CLEAN_FILES) + +distclean: clean