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

14 lines
209 B
Makefile
Raw Normal View History

2017-10-27 11:42:51 -05:00
all: main
2017-10-30 20:07:35 -05:00
main: hw2pr2.o node.o
g++ -std=c++17 hw2pr2.o node.o -o main
2017-10-27 11:42:51 -05:00
2017-10-30 20:07:35 -05:00
hw2pr1.o: hw2pr2.cpp
g++ -std=c++17 -c hw2pr2.cpp
2017-10-27 11:42:51 -05:00
node.o: node.cpp node.h
g++ -std=c++17 -c node.cpp
2017-10-25 07:34:40 -05:00
clean:
2017-10-27 11:42:51 -05:00
rm -rf *.o *.gch main