CSC-4730 / P8 / makefile
makefile
Raw
# CSC_4730 | P8 | Crusade Against File System Corruption; with c++11| Caleb A. Collar | 12.4.21

.SILENT:
#compile
all:
	g++ -Wall -O3 -std=c++11 -o fsck.out *.cpp -lpthread
#clean house
clean:
	rm *.out