firmware/stm32/Makefile
Peter D. Gray 6182bf33d5 Bump
(cherry picked from commit 979c27387e)
2024-01-04 11:52:47 -05:00

24 lines
499 B
Makefile

# (c) Copyright 2021 by Coinkite Inc. This file is covered by license found in COPYING-CC.
#
# Placeholder for lazy devs. Builds debug version of Mk4 by default. For a few specific
# goals, will do it for both Mk3 and Mk4.
#
# Normally you should use:
#
# make -f MK4-Makefile
# or
# make -f MK3-Makefile
#
.DEFAULT:
$(MAKE) DEBUG_BUILD=1 -f MK4-Makefile $(MAKECMDGOALS)
clean clobber:
$(MAKE) -f MK4-Makefile $(MAKECMDGOALS)
release repro rc1:
$(MAKE) -f MK4-Makefile $(MAKECMDGOALS)
# EOF