ergodox-firmware/makefile

22 lines
550 B
Makefile
Raw Normal View History

# -----------------------------------------------------------------------------
# makefile for the ergoDOX project
# -----------------------------------------------------------------------------
2012-06-13 01:11:18 +02:00
# directories
2012-06-13 01:11:18 +02:00
BUILD := build
ROOT := $(BUILD)/$(TARGET)
SCRIPTS := build-scripts
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
2015-12-09 11:46:03 +01:00
.PHONY: all clean firmware
2015-12-09 11:46:03 +01:00
all: firmware
clean:
2015-12-09 11:46:03 +01:00
cd src; $(MAKE) clean
2015-12-09 11:46:03 +01:00
firmware: clean
cd src; $(MAKE) all