blob: a3cb9b0f5a12a1c190990314cfd2cf19704d3fb4 [file] [log] [blame]
Joey Armstrong980e37f2023-02-28 18:57:41 -05001# -*- makefile -*-
2
3version += master
4version += voltha-2.11
5version += voltha-2.8
6version += playground
7
8all: $(version)
9
10$(version):
11 mkdir -p $(version)
12 rsync -rv --checksum master/. $@/.
13
14# [EOF]