prepare.mk 374 B

1234567891011121314151617
  1. #
  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. prepare: .git/config
  8. .git/config:
  9. @( \
  10. printf "Initializing SDK ... "; \
  11. git init -q .; \
  12. find . -mindepth 1 -maxdepth 1 -not -name feeds | xargs git add; \
  13. git commit -q -m "Initial state"; \
  14. echo "ok."; \
  15. )