Browse Source

Change TOP_DIR to TMK_DIR in makefiles

tags/v2.0
tmk 9 years ago
parent
commit
b4e2d325f3
58 changed files with 295 additions and 295 deletions
  1. 2
    2
      common.mk
  2. 6
    6
      converter/adb_usb/Makefile
  3. 6
    6
      converter/adb_usb/Makefile.pjrc
  4. 6
    6
      converter/ascii_usb/Makefile
  5. 6
    6
      converter/ibm4704_usb/Makefile
  6. 6
    6
      converter/m0110_usb/Makefile
  7. 6
    6
      converter/m0110_usb/Makefile.pjrc
  8. 6
    6
      converter/m0110_usb/Makefile.teensy
  9. 6
    6
      converter/news_usb/Makefile.pjrc
  10. 6
    6
      converter/next_usb/Makefile
  11. 6
    6
      converter/next_usb/Makefile.pjrc
  12. 6
    6
      converter/pc98_usb/Makefile
  13. 6
    6
      converter/ps2_usb/Makefile
  14. 6
    6
      converter/ps2_usb/Makefile.pjrc
  15. 6
    6
      converter/ps2_usb/Makefile.tmk_rev1
  16. 6
    6
      converter/ps2_usb/Makefile.tmk_rev2
  17. 6
    6
      converter/ps2_usb/Makefile.vusb
  18. 6
    6
      converter/serialmouse_usb/Makefile
  19. 6
    6
      converter/sun_usb/Makefile
  20. 7
    7
      converter/terminal_bluefruit/Makefile
  21. 6
    6
      converter/terminal_usb/Makefile
  22. 6
    6
      converter/usb_usb/Makefile
  23. 6
    6
      converter/x68k_usb/Makefile
  24. 5
    5
      keyboard/IIgs/Makefile
  25. 5
    5
      keyboard/alps64/Makefile
  26. 5
    5
      keyboard/gh60/Makefile
  27. 5
    5
      keyboard/gh60/Makefile.pjrc
  28. 5
    5
      keyboard/ghost_squid/Makefile.lufa
  29. 5
    5
      keyboard/hbkb/Makefile.lufa
  30. 5
    5
      keyboard/hhkb/Makefile
  31. 5
    5
      keyboard/hhkb/Makefile.pjrc
  32. 6
    6
      keyboard/hhkb/Makefile.rn42
  33. 6
    6
      keyboard/hhkb/not_supported/Makefile.iwrap
  34. 5
    5
      keyboard/hhkb/not_supported/Makefile.vusb
  35. 5
    5
      keyboard/hid_liber/Makefile.lufa
  36. 5
    5
      keyboard/hid_liber/Makefile.pjrc
  37. 5
    5
      keyboard/kitten_paw/Makefile.lufa
  38. 5
    5
      keyboard/kmac/Makefile.lufa
  39. 5
    5
      keyboard/kmac/Makefile.pjrc
  40. 5
    5
      keyboard/lightpad/Makefile.lufa
  41. 5
    5
      keyboard/lightsaber/Makefile.lufa
  42. 5
    5
      keyboard/lightsaber/Makefile.pjrc
  43. 5
    5
      keyboard/macway/Makefile.lufa
  44. 5
    5
      keyboard/macway/Makefile.pjrc
  45. 5
    5
      keyboard/nerd/Makefile
  46. 6
    6
      keyboard/onekey/Makefile
  47. 6
    6
      keyboard/onekey/Makefile.pjrc
  48. 5
    5
      keyboard/phantom/Makefile.lufa
  49. 5
    5
      keyboard/phantom/Makefile.pjrc
  50. 1
    1
      protocol.mk
  51. 3
    3
      protocol/bluefruit.mk
  52. 2
    2
      protocol/iwrap.mk
  53. 6
    6
      protocol/lufa.mk
  54. 1
    1
      protocol/pjrc.mk
  55. 5
    5
      protocol/usb_hid.mk
  56. 6
    6
      protocol/usb_hid/test/Makefile
  57. 1
    1
      protocol/vusb.mk
  58. 1
    1
      tool/mbed/common.mk

+ 2
- 2
common.mk View File



ifdef KEYMAP_SECTION_ENABLE ifdef KEYMAP_SECTION_ENABLE
OPT_DEFS += -DKEYMAP_SECTION_ENABLE OPT_DEFS += -DKEYMAP_SECTION_ENABLE
EXTRALDFLAGS = -Wl,-L$(TOP_DIR),-Tldscript_keymap_avr5.x
EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
endif endif


# Version string # Version string




# Search Path # Search Path
VPATH += $(TOP_DIR)/common
VPATH += $(TMK_DIR)/common

+ 6
- 6
converter/adb_usb/Makefile View File

TARGET = adb_usb_lufa TARGET = adb_usb_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/adb_usb/Makefile.pjrc View File

TARGET = adb_usb_pjrc TARGET = adb_usb_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ascii_usb/Makefile View File

TARGET = ascii_usb TARGET = ascii_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ibm4704_usb/Makefile View File

TARGET = ibm4704_usb TARGET = ibm4704_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/m0110_usb/Makefile View File

TARGET = m0110_lufa TARGET = m0110_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/m0110_usb/Makefile.pjrc View File

TARGET = m0110_pjrc TARGET = m0110_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/m0110_usb/Makefile.teensy View File

TARGET = m0110_lufa TARGET = m0110_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/news_usb/Makefile.pjrc View File

TARGET = news_usb_pjrc TARGET = news_usb_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/next_usb/Makefile View File

TARGET = next_usb TARGET = next_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/next_usb/Makefile.pjrc View File

TARGET = next_usb TARGET = next_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/pc98_usb/Makefile View File

TARGET = pc98_usb TARGET = pc98_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ps2_usb/Makefile View File

TARGET = ps2_usb_lufa TARGET = ps2_usb_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ps2_usb/Makefile.pjrc View File

TARGET = ps2_usb_pjrc TARGET = ps2_usb_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ps2_usb/Makefile.tmk_rev1 View File

TARGET = ps2_usb_tmk_rev1 TARGET = ps2_usb_tmk_rev1


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ps2_usb/Makefile.tmk_rev2 View File

TARGET = ps2_usb_tmk_rev2 TARGET = ps2_usb_tmk_rev2


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/ps2_usb/Makefile.vusb View File

TARGET = ps2_usb_vusb TARGET = ps2_usb_vusb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/protocol/vusb.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/protocol/vusb.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/serialmouse_usb/Makefile View File

TARGET = serialmouse_usb TARGET = serialmouse_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/sun_usb/Makefile View File

TARGET = sun_usb TARGET = sun_usb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 7
- 7
converter/terminal_bluefruit/Makefile View File

TARGET = terminal_bluefruit TARGET = terminal_bluefruit


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/bluefruit.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/bluefruit.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/terminal_usb/Makefile View File

TARGET = terminal_lufa TARGET = terminal_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/usb_usb/Makefile View File

# Target file name (without extension). # Target file name (without extension).
TARGET = usb_usb TARGET = usb_usb


TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)












include $(TOP_DIR)/protocol/usb_hid.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/usb_hid.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
converter/x68k_usb/Makefile View File

TARGET = x68k_usb_pjrc TARGET = x68k_usb_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)




include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/IIgs/Makefile View File

TARGET = IIgs_Standard TARGET = IIgs_Standard


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/alps64/Makefile View File

TARGET = alps64 TARGET = alps64


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/gh60/Makefile View File

TARGET = gh60_lufa TARGET = gh60_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/gh60/Makefile.pjrc View File

TARGET = gh60_pjrc TARGET = gh60_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


plain: OPT_DEFS += -DKEYMAP_PLAIN plain: OPT_DEFS += -DKEYMAP_PLAIN
plain: all plain: all

+ 5
- 5
keyboard/ghost_squid/Makefile.lufa View File

TARGET = ghostsquid_lufa TARGET = ghostsquid_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/hbkb/Makefile.lufa View File

TARGET = hbkb_lufa TARGET = hbkb_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/hhkb/Makefile View File

TARGET = hhkb_lufa TARGET = hhkb_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION
debug-on: all debug-on: all

+ 5
- 5
keyboard/hhkb/Makefile.pjrc View File

TARGET = hhkb_pjrc TARGET = hhkb_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
keyboard/hhkb/Makefile.rn42 View File

TARGET = hhkb_rn42 TARGET = hhkb_rn42


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include rn42.mk include rn42.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION debug-on: EXTRAFLAGS += -DDEBUG -DDEBUG_ACTION
debug-on: all debug-on: all

+ 6
- 6
keyboard/hhkb/not_supported/Makefile.iwrap View File

TARGET = hhkb_iwrap TARGET = hhkb_iwrap


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/iwrap.mk
include $(TMK_DIR)/protocol/iwrap.mk
# TODO: to be selectable: V-USB, LUFA or PJRC # TODO: to be selectable: V-USB, LUFA or PJRC
#include $(TOP_DIR)/protocol/vusb.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
#include $(TMK_DIR)/protocol/vusb.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/hhkb/not_supported/Makefile.vusb View File

TARGET = hhkb_vusb TARGET = hhkb_vusb


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/vusb.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/vusb.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


debug-on: EXTRAFLAGS += -DDEBUG debug-on: EXTRAFLAGS += -DDEBUG
debug-on: all debug-on: all

+ 5
- 5
keyboard/hid_liber/Makefile.lufa View File

TARGET = hid_liber_lufa TARGET = hid_liber_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


ansi: OPT_DEFS += -DLAYOUT_ANSI ansi: OPT_DEFS += -DLAYOUT_ANSI
ansi: all ansi: all

+ 5
- 5
keyboard/hid_liber/Makefile.pjrc View File

TARGET = hid_liber_pjrc TARGET = hid_liber_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


ansi: OPT_DEFS += -DLAYOUT_ANSI ansi: OPT_DEFS += -DLAYOUT_ANSI
ansi: all ansi: all

+ 5
- 5
keyboard/kitten_paw/Makefile.lufa View File

TARGET = kittenpaw_lufa TARGET = kittenpaw_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/kmac/Makefile.lufa View File

TARGET = kmac_lufa TARGET = kmac_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


winkey: OPT_DEFS += -DLAYOUT_WINKEY winkey: OPT_DEFS += -DLAYOUT_WINKEY
winkey: all winkey: all

+ 5
- 5
keyboard/kmac/Makefile.pjrc View File

TARGET = kmac_pjrc TARGET = kmac_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


winkey: OPT_DEFS += -DLAYOUT_WINKEY winkey: OPT_DEFS += -DLAYOUT_WINKEY
winkey: all winkey: all

+ 5
- 5
keyboard/lightpad/Makefile.lufa View File

TARGET = lightpad_lufa TARGET = lightpad_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/lightsaber/Makefile.lufa View File

TARGET = lightsaber_lufa TARGET = lightsaber_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


winkey: OPT_DEFS += -DLAYOUT_WINKEY winkey: OPT_DEFS += -DLAYOUT_WINKEY
winkey: all winkey: all

+ 5
- 5
keyboard/lightsaber/Makefile.pjrc View File

TARGET = lightsaber_pjrc TARGET = lightsaber_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


winkey: OPT_DEFS += -DLAYOUT_WINKEY winkey: OPT_DEFS += -DLAYOUT_WINKEY
winkey: all winkey: all

+ 5
- 5
keyboard/macway/Makefile.lufa View File

TARGET = macway_lufa TARGET = macway_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/macway/Makefile.pjrc View File

TARGET = macway_pjrc TARGET = macway_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/nerd/Makefile View File

TARGET = nerd_lufa TARGET = nerd_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
keyboard/onekey/Makefile View File

TARGET = onekey_lufa TARGET = onekey_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/common.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/rules.mk

+ 6
- 6
keyboard/onekey/Makefile.pjrc View File

TARGET = onekey_pjrc TARGET = onekey_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/common.mk
include $(TOP_DIR)/protocol.mk
include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/protocol.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/rules.mk

+ 5
- 5
keyboard/phantom/Makefile.lufa View File

TARGET = phantom_lufa TARGET = phantom_lufa


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


ansi: OPT_DEFS += -DLAYOUT_ANSI ansi: OPT_DEFS += -DLAYOUT_ANSI
ansi: all ansi: all

+ 5
- 5
keyboard/phantom/Makefile.pjrc View File

TARGET = phantom_pjrc TARGET = phantom_pjrc


# Directory common source filess exist # Directory common source filess exist
TOP_DIR = ../..
TMK_DIR = ../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TMK_DIR)


include $(TOP_DIR)/protocol/pjrc.mk
include $(TOP_DIR)/common.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/pjrc.mk
include $(TMK_DIR)/common.mk
include $(TMK_DIR)/rules.mk


ansi: OPT_DEFS += -DLAYOUT_ANSI ansi: OPT_DEFS += -DLAYOUT_ANSI
ansi: all ansi: all

+ 1
- 1
protocol.mk View File

endif endif


# Search Path # Search Path
VPATH += $(TOP_DIR)/protocol
VPATH += $(TMK_DIR)/protocol

+ 3
- 3
protocol/bluefruit.mk View File

endif endif


# Search Path # Search Path
VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR)
#VPATH += $(TOP_DIR)/$(BLUEFRUIT_DIR)/usb_debug_only
VPATH += $(TOP_DIR)/$(PJRC_DIR)
VPATH += $(TMK_DIR)/$(BLUEFRUIT_DIR)
#VPATH += $(TMK_DIR)/$(BLUEFRUIT_DIR)/usb_debug_only
VPATH += $(TMK_DIR)/$(PJRC_DIR)


OPT_DEFS += -DPROTOCOL_BLUEFRUIT OPT_DEFS += -DPROTOCOL_BLUEFRUIT
OPT_DEFS += -DPROTOCOL_PJRC OPT_DEFS += -DPROTOCOL_PJRC

+ 2
- 2
protocol/iwrap.mk View File

$(COMMON_DIR)/uart.c $(COMMON_DIR)/uart.c


# Search Path # Search Path
VPATH += $(TOP_DIR)/protocol/iwrap
VPATH += $(TMK_DIR)/protocol/iwrap




# TODO: compatible with LUFA and PJRC # TODO: compatible with LUFA and PJRC
$(VUSB_DIR)/usbdrv/usbdrv.c \ $(VUSB_DIR)/usbdrv/usbdrv.c \
$(VUSB_DIR)/usbdrv/usbdrvasm.S \ $(VUSB_DIR)/usbdrv/usbdrvasm.S \
$(VUSB_DIR)/usbdrv/oddebug.c $(VUSB_DIR)/usbdrv/oddebug.c
VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv
VPATH += $(TMK_DIR)/protocol/vusb:$(TMK_DIR)/protocol/vusb/usbdrv





+ 6
- 6
protocol/lufa.mk View File

LUFA_DIR = protocol/lufa LUFA_DIR = protocol/lufa


# Path to the LUFA library # Path to the LUFA library
ifeq (, $(wildcard $(TOP_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h))
ifeq (, $(wildcard $(TMK_DIR)/$(LUFA_DIR)/LUFA-git/LUFA/Version.h))
LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730 LUFA_PATH ?= $(LUFA_DIR)/LUFA-120730
else else
LUFA_PATH ?= $(LUFA_DIR)/LUFA-git LUFA_PATH ?= $(LUFA_DIR)/LUFA-git




# Create the LUFA source path variables by including the LUFA makefile # Create the LUFA source path variables by including the LUFA makefile
ifneq (, $(wildcard $(TOP_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk))
ifneq (, $(wildcard $(TMK_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk))
# New build system from 20120730 # New build system from 20120730
LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA
include $(TOP_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk
include $(TMK_DIR)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk
else else
include $(TOP_DIR)/$(LUFA_PATH)/LUFA/makefile
include $(TMK_DIR)/$(LUFA_PATH)/LUFA/makefile
endif endif


LUFA_SRC = $(LUFA_DIR)/lufa.c \ LUFA_SRC = $(LUFA_DIR)/lufa.c \
SRC += $(LUFA_SRC) SRC += $(LUFA_SRC)


# Search Path # Search Path
VPATH += $(TOP_DIR)/$(LUFA_DIR)
VPATH += $(TOP_DIR)/$(LUFA_PATH)
VPATH += $(TMK_DIR)/$(LUFA_DIR)
VPATH += $(TMK_DIR)/$(LUFA_PATH)


# Option modules # Option modules
#ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE) #ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)

+ 1
- 1
protocol/pjrc.mk View File

endif endif


# Search Path # Search Path
VPATH += $(TOP_DIR)/$(PJRC_DIR)
VPATH += $(TMK_DIR)/$(PJRC_DIR)


# This indicates using LUFA stack # This indicates using LUFA stack
OPT_DEFS += -DPROTOCOL_PJRC OPT_DEFS += -DPROTOCOL_PJRC

+ 5
- 5
protocol/usb_hid.mk View File

# #
# Search Path # Search Path
# #
VPATH += $(TOP_DIR)/$(USB_HID_DIR)
VPATH += $(TOP_DIR)/$(USB_HOST_SHIELD_DIR)
VPATH += $(TMK_DIR)/$(USB_HID_DIR)
VPATH += $(TMK_DIR)/$(USB_HOST_SHIELD_DIR)


# for #include "Arduino.h" # for #include "Arduino.h"
VPATH += $(TOP_DIR)/$(ARDUINO_CORES_DIR)
VPATH += $(TMK_DIR)/$(ARDUINO_CORES_DIR)


# for #include "pins_arduino.h" # for #include "pins_arduino.h"
VPATH += $(TOP_DIR)/$(ARDUINO_DIR)/variants/leonardo
VPATH += $(TMK_DIR)/$(ARDUINO_DIR)/variants/leonardo


# ad hoc workaround for compile problem on Windows: # ad hoc workaround for compile problem on Windows:
# Windows doesn't know difference between common/print.h and arduino/Print.h. # Windows doesn't know difference between common/print.h and arduino/Print.h.
# On Linux no problem. # On Linux no problem.
# Change file name common/print.h to console.h ? # Change file name common/print.h to console.h ?
VPATH := $(TOP_DIR)/common $(VPATH)
VPATH := $(TMK_DIR)/common $(VPATH)

+ 6
- 6
protocol/usb_hid/test/Makefile View File

# Target file name (without extension). # Target file name (without extension).
TARGET = usb_hid_test TARGET = usb_hid_test


TOP_DIR = ../../..
TMK_DIR = ../../..


# Directory keyboard dependent files exist # Directory keyboard dependent files exist
TARGET_DIR = . TARGET_DIR = .


# Search Path # Search Path
VPATH += $(TARGET_DIR) VPATH += $(TARGET_DIR)
VPATH += $(TOP_DIR)
VPATH += $(TOP_DIR)/common
VPATH += $(TMK_DIR)
VPATH += $(TMK_DIR)/common












include $(TOP_DIR)/protocol/usb_hid.mk
include $(TOP_DIR)/protocol/lufa.mk
include $(TOP_DIR)/rules.mk
include $(TMK_DIR)/protocol/usb_hid.mk
include $(TMK_DIR)/protocol/lufa.mk
include $(TMK_DIR)/rules.mk

+ 1
- 1
protocol/vusb.mk View File





# Search Path # Search Path
VPATH += $(TOP_DIR)/protocol/vusb:$(TOP_DIR)/protocol/vusb/usbdrv
VPATH += $(TMK_DIR)/protocol/vusb:$(TMK_DIR)/protocol/vusb/usbdrv

+ 1
- 1
tool/mbed/common.mk View File

ifdef KEYMAP_SECTION_ENABLE ifdef KEYMAP_SECTION_ENABLE
$(error Not Supported) $(error Not Supported)
OPT_DEFS += -DKEYMAP_SECTION_ENABLE OPT_DEFS += -DKEYMAP_SECTION_ENABLE
EXTRALDFLAGS = -Wl,-L$(TOP_DIR),-Tldscript_keymap_avr5.x
EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
endif endif

Loading…
Cancel
Save