CC=g++
CFLAGS=-O0
TARGET=./problem2_cpp
OUTFILE=../output/cpp.txt
$(TARGET): problem2.o
$(CC) $(CFLAGS) -o $(TARGET) problem2.o
problem2.o: problem2.cpp
$(CC) $(CFLAGS) -c problem2.cpp
clean:
rm -f *.o $(TARGET) $(OUTFILE)
run: $(TARGET)
$(TARGET) <$(INFILE) >$(OUTFILE)
I am a rather simple makefile to compile,run a cpp, and output its file. But I get this odd error:
quota_ufs: over hard disk limit (pid 20159, uid 58861, inum 5132792, fs /home) ld: fatal: file ./problem2_cpp: creation interrupted: Disc quota exceeded
What does that mean?