File: Makefile

package info (click to toggle)
gretl 2021a-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 57,556 kB
  • sloc: ansic: 394,030; sh: 4,494; makefile: 2,856; cpp: 2,776; xml: 590; perl: 364
file content (8 lines) | stat: -rw-r--r-- 133 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
CXX ?= g++
CFLAGS = -Wall -Wconversion -g -O3 -fPIC -fopenmp

svm.o: svm.cpp svm.h
	$(CXX) $(CFLAGS) -c svm.cpp

clean:
	rm -f svm.o