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
2017-10-27 11:42:51 -05:00

13 lines
209 B
Makefile

all: main
main: hw2pr1.o node.o
g++ -std=c++17 hw2pr1.o node.o -o main
hw2pr1.o: hw2pr1.cpp
g++ -std=c++17 -c hw2pr1.cpp
node.o: node.cpp node.h
g++ -std=c++17 -c node.cpp
clean:
rm -rf *.o *.gch main