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