fedor-resh

Untitled

Dec 30th, 2023
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. .PHONY: force_rebuild
  2. main: force_rebuild main.cpp
  3. g++ main.cpp -o main
  4. ./main > output.txt < input.txt
  5.  
  6. .PHONY: run
  7. run:
  8. ./main > output.txt < input.txt
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment