From 713cb27cab4de6f3fd343ae37a04f54138423b53 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 8 Jun 2016 10:25:51 +0800 Subject: mass_profile/Makefile: add flag OPENMP --- mass_profile/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'mass_profile') diff --git a/mass_profile/Makefile b/mass_profile/Makefile index 552a7de..b9b6136 100644 --- a/mass_profile/Makefile +++ b/mass_profile/Makefile @@ -11,6 +11,10 @@ CXX ?= g++ #CXXFLAGS += -Wall -Werror CXXFLAGS += -Wall +ifdef OPENMP + CXXFLAGS += -fopenmp +endif + ifdef DEBUG CXXFLAGS += -g else @@ -33,14 +37,14 @@ pgplot: libcpgplot.a libpgplot.a libcpgplot.a: ifdef HEADAS - ln -sv $(HEADAS)/lib/libcpgplot*.a ./$@ + ln -s $(HEADAS)/lib/libcpgplot*.a ./$@ else $(error HEASoft not initialized) endif libpgplot.a: ifdef HEADAS - ln -sv $(HEADAS)/lib/libpgplot*.a ./$@ + ln -s $(HEADAS)/lib/libpgplot*.a ./$@ else $(error HEASoft not initialized) endif -- cgit v1.2.2