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/hw1pr1/makefile
2017-10-24 08:49:03 -05:00

5 lines
104 B
Makefile

all: main.o
main.o: hw1pr1.cpp
g++ -std=c++17 -lpthread hw1pr1.cpp -o hw1pr1
clean:
rm -rf *.o hw1pr1