1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:07:44 +00:00

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
parent 654ffdef91
commit 708543c3d6
2 changed files with 12 additions and 0 deletions

View file

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