firmware/stm32/Makefile
Peter D. Gray 2772af753c
better
2024-09-12 10:38:33 -04:00

28 lines
640 B
Makefile

# (c) Copyright 2021 by Coinkite Inc. This file is covered by license found in COPYING-CC.
#
# This file is just a placeholder/short-cut for lazy devs.
# It builds a debug version of Q1 by default.
#
# Normally you must use:
#
# make -f MK4-Makefile
# or
# make -f Q1-Makefile
#
.DEFAULT_GOAL := all
.DEFAULT all:
$(MAKE) DEBUG_BUILD=1 -f Q1-Makefile $(MAKECMDGOALS)
clean clobber repro:
@echo You should do either:
@echo
@echo " make" -f Q1-Makefile $(MAKECMDGOALS)
@echo "-OR-"
@echo " make" -f MK4-Makefile $(MAKECMDGOALS)
rc1 rc2 release:
make -f Q1-Makefile $(MAKECMDGOALS) && make -f MK4-Makefile $(MAKECMDGOALS)
# EOF