From acc974c64b1e17e6807133fdc50de5bb34aedda5 Mon Sep 17 00:00:00 2001 From: tmk Date: Wed, 9 Feb 2011 00:03:58 +0900 Subject: added protocol stack: pjrc, vusb --- Makefile.pjrc | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Makefile.pjrc (limited to 'Makefile.pjrc') diff --git a/Makefile.pjrc b/Makefile.pjrc new file mode 100644 index 000000000..4c0e83504 --- /dev/null +++ b/Makefile.pjrc @@ -0,0 +1,28 @@ +# Following variables need to be set in /Makefile: +# TARGET +# COMMON_DIR +# TARGET_DIR +# TARGET_SRC +# MCU +# F_CPU + + +# List C source files here. (C dependencies are automatically generated.) +SRC = usb_keyboard.c \ + usb_debug.c \ + usb.c \ + jump_bootloader.c +SRC += $(TARGET_SRC) + +# Option modules +ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE) + SRC += usb_mouse.c +endif + +ifdef USB_EXTRA_ENABLE + SRC += usb_extra.c +endif + + +# C source file search path +VPATH = $(TARGET_DIR):$(COMMON_DIR):$(COMMON_DIR)/pjrc -- cgit v1.2.3