blob: fbb8b99f91936851b6abd3b99dac3358fc14118a [file] [log] [blame]
Joey Armstrongf128de82023-09-08 17:05:18 -04001#!/bin/bash
2
3set -euo pipefail
4
5mkdir -p makefiles
6pushd makefiles || { echo "ERROR: pushd makefiles failed"; exit 1; }
7
8git submodule add 'https://github.com/opencord/onf-make.git' onf-lib
9
10echo 'onf-lib' >> .gitignore
11git add .gitignore
12
13cp ../makefiles_include_mk.ex include.mk
14
15mkdir -p local
16touch local/include.mk
17git add include.mk
18
19popd || { echo "ERROR: popd makefiles failed"; exit 1; }
20
21# [EOF]