diff options
author | Maxim Devaev <[email protected]> | 2023-09-09 13:07:30 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2023-09-09 13:07:30 +0300 |
commit | 2189b77c07533c5ed7bfc3f7d58b98f0622419dd (patch) | |
tree | 75cdaeae325e041b0a6dd9a32b53b5bfc3d990b3 /hid/pico/Makefile | |
parent | a03c3c2367fc950c7ea8d4557fc24de8580dfd74 (diff) |
using ps2x2pico as a library
Diffstat (limited to 'hid/pico/Makefile')
-rw-r--r-- | hid/pico/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/hid/pico/Makefile b/hid/pico/Makefile index fbfd963e..7baca263 100644 --- a/hid/pico/Makefile +++ b/hid/pico/Makefile @@ -15,7 +15,7 @@ install: all clean: rm -rf .build hid.uf2 clean-all: clean - rm -rf .pico-sdk* .tinyusb* + rm -rf .pico-sdk* .tinyusb* .ps2x2pico define libdep @@ -30,8 +30,9 @@ endef $(call libdep,pico-sdk,raspberrypi/pico-sdk,6a7db34ff63345a7badec79ebea3aaef1712f374) .tinyusb: $(call libdep,tinyusb,hathach/tinyusb,d713571cd44f05d2fc72efc09c670787b74106e0) -# TODO: PS2: Add your library here and add it to "all" and "clean-all" targets -deps: .pico-sdk .tinyusb +.ps2x2pico: + $(call libdep,ps2x2pico,No0ne/ps2x2pico,706b5c34cb6a2fcefeb7f1ee0f673c7de9452fc6) +deps: .pico-sdk .tinyusb .ps2x2pico .PHONY: deps |