make-minimal 409 B

12345678910111213141516
  1. #!/bin/sh
  2. #
  3. # This is a wrapper for make to build a "minimal" Zephyr port.
  4. # It should be run just like make (i.e. extra vars can be passed on the
  5. # command line, etc.), e.g.:
  6. #
  7. # ./make-minimal BOARD=qemu_cortex_m3
  8. # ./make-minimal BOARD=qemu_cortex_m3 run
  9. #
  10. make \
  11. CONF_FILE=prj_minimal.conf \
  12. CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_minimal.h>"' \
  13. FROZEN_DIR= \
  14. QEMU_NET=0 \
  15. "$@"