mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
17a5028e43
Refs #358
14 lines
345 B
Makefile
14 lines
345 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
|
|
|
|
ifeq ($(HAVE_GSL),1)
|
|
TRICK_CXXFLAGS += -D_HAVE_GSL
|
|
ifneq ($(GSL_HOME),/usr)
|
|
TRICK_CXXFLAGS += -I${GSL_HOME}/include
|
|
endif
|
|
endif
|
|
|