blob: 76bad05a0227517e516ed3fbb9e2edce316e1f80 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
2# Copyright (C) 2015 OpenWrt.org
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8prepare: .git/config
9
10.git/config:
11 @( \
12 printf "Initializing SDK ... "; \
13 git init -q .; \
14 find . -mindepth 1 -maxdepth 1 -not -name feeds | xargs git add; \
15 git commit -q -m "Initial state"; \
16 echo "ok."; \
17 )