miniprojet/learning/code/makefile

8 lines
89 B
Makefile

all : quantvec
quantvec : *.c *.h
g++ -O3 -Wall *.c -o quantvec
clean :
rm quantvec