mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 13:17:55 +00:00
21c01a5454
This reverts commit e86027f825
.
16 lines
375 B
Makefile
16 lines
375 B
Makefile
TRICK_HOME := $(abspath $(dir $(lastword $(MAKEFILE_LIST)))../../..)
|
|
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
|
include ${TRICK_HOME}/share/trick/makefiles/Makefile.tricklib
|
|
|
|
-include Makefile_deps
|
|
|
|
TRICK_CXXFLAGS += -std=c++11
|
|
|
|
ifeq ($(HAVE_GSL),1)
|
|
TRICK_CXXFLAGS += -D_HAVE_GSL
|
|
ifneq ($(GSL_HOME),/usr)
|
|
TRICK_CXXFLAGS += -I${GSL_HOME}/include
|
|
endif
|
|
endif
|
|
|