X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=ps2_usb%2FMakefile.vusb;h=5b6978f015128f3cec20339767ed6e7316deb1be;hb=9e0c6247c9cbc5c4c7a4ae6b1e2adc6a7a332c49;hp=6e49fc44ddd4248716b988a6407666984a9208c9;hpb=61e12a3157ea6860f23bf8e29372aa70aeb02be0;p=max%2Ftmk_keyboard.git diff --git a/ps2_usb/Makefile.vusb b/ps2_usb/Makefile.vusb index 6e49fc44..5b6978f0 100644 --- a/ps2_usb/Makefile.vusb +++ b/ps2_usb/Makefile.vusb @@ -1,5 +1,10 @@ +# +# Makefile for V-USB +# + + # Target file name (without extension). -TARGET = ps2_vusb +TARGET = ps2_usb_vusb # Directory common source filess exist COMMON_DIR = .. @@ -8,11 +13,11 @@ COMMON_DIR = .. TARGET_DIR = . # keyboard dependent files -TARGET_SRC = main_vusb.c \ - keymap.c \ - matrix.c \ - led.c \ - ps2_usart.c +SRC = main.c \ + keymap.c \ + matrix.c \ + led.c \ + ps2_usart.c CONFIG_H = config_vusb.h @@ -43,8 +48,9 @@ F_CPU = 20000000 # comment out to disable the options. # MOUSEKEY_ENABLE = yes # Mouse keys -#USB_EXTRA_ENABLE = yes # Enhanced feature for Windows(Audio control and System control) -#USB_NKRO_ENABLE = yes # USB Nkey Rollover +EXTRAKEY_ENABLE = yes # Audio control and System control +#NKRO_ENABLE = yes # USB Nkey Rollover +NO_UART = yes # UART is unavailable @@ -80,5 +86,5 @@ PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE -include $(COMMON_DIR)/Makefile.vusb -include $(COMMON_DIR)/Makefile.common +include $(COMMON_DIR)/vusb.mk +include $(COMMON_DIR)/common.mk