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/hw2/hw2pr1/makefile

6 lines
94 B
Makefile
Raw Normal View History

2017-10-25 07:34:40 -05:00
all: main.o
main.o: hw2pr1.cpp
g++ -std=c++17 hw2pr1.cpp -o hw2pr1
clean:
rm -rf *.o hw2pr1