HackStudio: Add a simple "Run" action

Ctrl+R will now execute "make run" in the project directory. :^)
This commit is contained in:
Andreas Kling 2019-10-22 22:18:46 +02:00
commit 708543c3d6
Notes: sideshowbarker 2024-07-19 11:35:03 +09:00
2 changed files with 12 additions and 0 deletions

View file

@ -11,3 +11,6 @@ $(PROGRAM): $(OBJS)
clean:
rm $(OBJS) $(PROGRAM)
run:
./$(PROGRAM)