Skip to content

Commit

Permalink
Ensure cpu_demo and tty_demo build for make test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdfrench committed Aug 31, 2024
1 parent 2db0628 commit 7528ae4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@ vector_add.exe: code/vector_add.c
plt_example.exe: code/plt_example.c
gcc -fPIC -no-pie -o $@ $<

cpu_demo.exe: code/cpu_demo.c
gcc -o $@ $<

tty_demo.exe: code/tty_demo.c
gcc -o $@ $<

speed_demo_%.exe: code/speed_demo/%/main.exe
cp $< $@

Expand Down

0 comments on commit 7528ae4

Please sign in to comment.