Files
zsa_qmk_firmware/makefile
T

27 lines
785 B
Makefile
Raw Normal View History

2009-02-23 07:08:34 +00:00
#
# LUFA Library
2009-12-30 23:49:19 +00:00
# Copyright (C) Dean Camera, 2010.
2009-02-23 07:08:34 +00:00
#
# dean [at] fourwalledcubicle [dot] com
# www.fourwalledcubicle.com
#
# Makefile to build the LUFA library, projects and demos.
2009-02-23 07:08:34 +00:00
# Call with "make all" to rebuild everything, "make clean" to clean everything,
# "make clean_list" to remove all intermediatary files but preserve any binaries,
2010-03-29 07:49:58 +00:00
# "make doxygen" to document everything with Doxygen (if installed) and
# "make clean_doxygen" to remove generated Doxygen documentation from everything.
2009-02-23 07:08:34 +00:00
all:
2009-02-23 07:08:34 +00:00
%:
@echo Executing \"make $@\" on all LUFA library elements.
@echo
make -C LUFA/ $@ -s
make -C Demos/ $@ -s
make -C Projects/ $@ -s
make -C Bootloaders/ $@ -s
2009-02-23 07:08:34 +00:00
@echo
@echo LUFA \"make $@\" operation complete.