unified_retro_keyboard/firmware/asdf/src/Makefile
Dave 088af21650 modifier cleanups
- add caps key function, similar to shift.  This is intended for a DIP switch
  setting to switch the keyboard between all CAPS and upper/lower modes.
- clean up the modifier state enums to include all legal values
- clean up the modifier index value calculation to improve readability.
2019-12-24 22:27:24 -06:00

24 lines
286 B
Makefile

# -*- makefile -*-
ARCH ?= atmega328p
KEYMAP ?= ascii
BUILD_DIR = ../build
all: app
app:
make -f Makefile.app
test:
make -f Makefile.test
clean:
make -f Makefile.app clean
make -f Makefile.test clean
cleanall:
make -f Makefile.app cleanall
make -f Makefile.test cleanall