This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
csce420pine64backup/hw1/hw1pr3/makefile

6 lines
89 B
Makefile
Raw Normal View History

2017-10-24 08:49:03 -05:00
all: main.o
main.o: hw1pr3.cpp
2017-10-25 07:44:49 -05:00
g++ -std=c++17 hw1pr3.cpp -o hw1pr3.o
2017-10-24 08:49:03 -05:00
clean:
2017-10-25 07:44:49 -05:00
rm -rf *.o