mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
69d64fb582
Refs #358
14 lines
487 B
Makefile
14 lines
487 B
Makefile
TRICK_HOME := $(abspath $(dir $(lastword $(MAKEFILE_LIST)))../../..)
|
|
|
|
# set CONFIG_MK to allow compilation without running configure
|
|
CONFIG_MK = 1
|
|
|
|
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
|
# set the TRICK_LIB variable to create a separate library for comm
|
|
TRICK_LIB := $(TRICK_LIB_DIR)/libtrick_comm.a
|
|
include ${TRICK_HOME}/share/trick/makefiles/Makefile.tricklib
|
|
-include Makefile_deps
|
|
|
|
# make the comm library when called by the master makefile.
|
|
trick: ${TRICK_LIB}
|