2013-08-29 15:21:13 +01:00
|
|
|
# CORE
|
|
|
|
# (c)2010-2013 the Boeing Company.
|
|
|
|
# See the LICENSE file included in this distribution.
|
|
|
|
#
|
|
|
|
# author: Jeff Ahrenholz <jeffrey.m.ahrenholz@boeing.com>
|
|
|
|
#
|
|
|
|
# Makefile for installing the CORE GUI. Since it is a Tcl/Tk script, we do not
|
|
|
|
# build anything here.
|
|
|
|
#
|
|
|
|
|
|
|
|
SUBDIRS = icons
|
|
|
|
|
2018-03-13 23:20:50 +00:00
|
|
|
TCL_FILES := $(wildcard *.tcl)
|
|
|
|
ADDONS_FILES := $(wildcard addons/*)
|
|
|
|
CONFIG_FILES := $(wildcard configs/*)
|
2013-08-29 15:21:13 +01:00
|
|
|
|
2021-05-07 22:30:28 +01:00
|
|
|
# CORE GUI script (/usr/local/bin/core-gui-legacy)
|
|
|
|
dist_bin_SCRIPTS = core-gui-legacy
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
# Tcl/Tk scripts (/usr/local/lib/core)
|
2018-03-13 23:20:50 +00:00
|
|
|
coredir = $(CORE_LIB_DIR)
|
|
|
|
dist_core_DATA = $(TCL_FILES)
|
|
|
|
dist_core_SCRIPTS = $(OTHER_FILES)
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
# Addon files
|
2018-03-13 23:20:50 +00:00
|
|
|
coreaddonsdir = $(coredir)/addons
|
2013-08-29 15:21:13 +01:00
|
|
|
dist_coreaddons_DATA = $(ADDONS_FILES)
|
|
|
|
|
|
|
|
# Sample configs (/usr/local/share/core/examples/configs)
|
2018-03-13 23:20:50 +00:00
|
|
|
coreconfigsdir = $(datadir)/core/examples/configs
|
|
|
|
dist_coreconfigs_DATA = $(CONFIG_FILES)
|
2015-05-26 18:34:09 +01:00
|
|
|
|
2018-03-14 17:43:25 +00:00
|
|
|
# remove generated file from dist
|
|
|
|
dist-hook:
|
|
|
|
-rm -f $(distdir)/version.tcl
|
|
|
|
|
2013-08-29 15:21:13 +01:00
|
|
|
# extra cruft to remove
|
2018-03-13 23:20:50 +00:00
|
|
|
DISTCLEANFILES = Makefile.in
|
2013-08-29 15:21:13 +01:00
|
|
|
|
|
|
|
# files to include in source tarball not included elsewhere
|
2021-05-07 22:30:28 +01:00
|
|
|
EXTRA_DIST = core-gui-legacy.in
|