Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gnuk port on tomu (experimental) #35

Merged
merged 2 commits into from
Aug 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[submodule "libopencm3"]
path = libopencm3
url = https://github.com/libopencm3/libopencm3
[submodule "gnuk"]
path = gnuk
url = https://github.com/aze00/gnuk.git
branch = efm32
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
all: libopencm3-samples
all: libopencm3-samples gnuk
@true

gnuk:
git submodule init
git submodule update --recursive
cd gnuk/src && ./configure --target=TOMU --vidpid=234b:0000
make -C gnuk/src

libopencm3-samples:
git submodule init
git submodule update
Expand All @@ -21,4 +27,4 @@ clean:
make -C usb_midi clean
make -C usb_simple clean

.PHONY: libopencm3-samples
.PHONY: libopencm3-samples gnuk
1 change: 1 addition & 0 deletions gnuk
Submodule gnuk added at ae723f