aboutsummaryrefslogtreecommitdiffstats
path: root/build/Makefile.common.inc
blob: 6a210bccb584e3e047cac31281ef5a69ee1520b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Usage:
#
# Other makefiles like Makefile.asciidoc.inc and Makefile.vty-reference.inc add
# entries to UPLOAD_FILES and CLEAN_FILES.
#
# Include this file at the end to have 'upload' and 'clean' targets.

UPLOAD_PATH ?= generic@sysmocom-downloads:documents

upload: $(UPLOAD_FILES)
	rsync -avz $(UPLOAD_FILES) $(UPLOAD_PATH)/

clean:
	-rm -rf $(CLEAN_FILES)

distclean: clean