Skip to content

Commit

Permalink
Fix toplevel makefile (#23)
Browse files Browse the repository at this point in the history
This change aligns the toplevel makefile with the recent changes to
the receiver and keyboard makefiles.

Signed-off-by: Nikos Nikoleris <[email protected]>
  • Loading branch information
relokin authored Apr 21, 2021
1 parent 2205e39 commit a193645
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
DIRS=redox-w-receiver-basic/custom/armgcc redox-w-keyboard-basic/custom/armgcc

all::
make -C redox-w-receiver-basic/custom/armgcc; \
make -C redox-w-keyboard-basic/custom/armgcc keyboard_side=left; \
make -C redox-w-keyboard-basic/custom/armgcc keyboard_side=right;
all:
make -C redox-w-receiver-basic/custom/armgcc
make -C redox-w-keyboard-basic/custom/armgcc

clean::
make -C redox-w-receiver-basic/custom/armgcc clean; \
make -C redox-w-keyboard-basic/custom/armgcc clean; \
make -C redox-w-keyboard-basic/custom/armgcc clean;
clean:
make -C redox-w-receiver-basic/custom/armgcc clean
make -C redox-w-keyboard-basic/custom/armgcc clean

0 comments on commit a193645

Please sign in to comment.