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/hw2pr3/makefile

11 lines
142 B
Makefile
Raw Permalink Normal View History

2017-10-30 20:11:35 -05:00
all: main
main: hw2pr3.o
g++ -std=c++17 hw2pr3.o -o main
hw2pr1.o: hw2pr2.cpp
g++ -std=c++17 -c hw2pr2.cpp
clean:
rm -rf *.o *.gch main