OS-Labs/lab3/Makefile

8 lines
137 B
Makefile
Raw Normal View History

2024-09-03 17:11:02 +05:30
scheduler.out: scheduler.cpp
g++ scheduler.cpp -o scheduler.out
run_sched: scheduler.out
2024-09-10 16:23:13 +05:30
./scheduler.out $(WF) $(SA)
2024-09-03 17:11:02 +05:30
2024-09-10 16:23:13 +05:30
clean:
rm *.out