mirror of
https://github.com/Steffo99/unimore-hpc-assignments.git
synced 2024-11-23 16:44:22 +00:00
9 lines
99 B
Makefile
9 lines
99 B
Makefile
|
FLAGS := -std=c++0x -fopenmp
|
||
|
|
||
|
graphgen: graphgen.cpp
|
||
|
g++ $(FLAGS) -o $@ $<
|
||
|
|
||
|
clean:
|
||
|
rm graphgen
|
||
|
|