mstarch: removing mk and its ilk from the system

This commit is contained in:
Michael D Starch 2020-10-15 17:49:46 -07:00
parent 14eef75472
commit 6c81117ef5
628 changed files with 0 additions and 13675 deletions

View File

@ -1,40 +0,0 @@
#!/bin/sh -e
# ----------------------------------------------------------------------
# Makefile
# ----------------------------------------------------------------------
all: FpCompAuto.jar
include classes.mk
update_build:
./gen_classes_mk > classes.mk
clean:
rm -rf classes FpCompAuto.jar
FpCompAuto.jar: classes
jar -cf $@ \
-C classes gov/nasa/jpl/componentaction \
-C classes gov/nasa/jpl/componentaction/isfxmlwriter \
lib \
-C lib bundles \
-C lib/bundles javax.jmi_1.0.0.201803050637 \
-C lib/bundles org.junit_4.11.0.v201303080030 \
-C . TopologyAi.vm \
-C . ComponentAi.vm \
-C . PortAi.vm
install:
@echo "Installing to $(MD_INSTALL_LOC)"
mkdir -p $(MD_INSTALL_LOC)/plugins/gov.nasa.jpl.magicdraw.componentAutocoder
cp FpCompAuto.jar $(MD_INSTALL_LOC)/plugins/gov.nasa.jpl.magicdraw.componentAutocoder
cp plugin.xml $(MD_INSTALL_LOC)/plugins/gov.nasa.jpl.magicdraw.componentAutocoder
cp -r lib $(MD_INSTALL_LOC)/plugins/gov.nasa.jpl.magicdraw.componentAutocoder
#install: FpCompAuto.jar
# cp FpCompAuto.jar /Users/bocchino/Downloads/MagicDraw/plugins/gov.nasa.jpl.magicdraw.componentAutocoder/FpCompAuto.jar
.PHONY:
update_build

View File

@ -1,21 +0,0 @@
all: refman.pdf
pdf: refman.pdf
refman.pdf: clean refman.tex
pdflatex refman
makeindex refman.idx
pdflatex refman
latex_count=8 ; \
while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\
do \
echo "Rerunning latex...." ;\
pdflatex refman ;\
latex_count=`expr $$latex_count - 1` ;\
done
makeindex refman.idx
pdflatex refman
clean:
rm -f *.ps *.dvi *.aux *.toc *.idx *.ind *.ilg *.log *.out *.brf *.blg *.bbl refman.pdf

View File

@ -1,14 +0,0 @@
# ----------------------------------------------------------------------
# Makefile
# ----------------------------------------------------------------------
TMPL := $(wildcard *.tmpl)
TEMPLATE_PY := $(TMPL:%.tmpl=%.py)
all: $(TEMPLATE_PY)
clean:
$(RM) *.py.bak
%.py: %.tmpl
$(CHEETAH_COMPILE) $<

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1,14 +0,0 @@
# ----------------------------------------------------------------------
# Makefile
# ----------------------------------------------------------------------
TMPL := $(wildcard *.tmpl)
TEMPLATE_PY := $(TMPL:%.tmpl=%.py)
all: $(TEMPLATE_PY)
clean:
$(RM) *.py.bak
%.py: %.tmpl
$(CHEETAH_COMPILE) $<

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1 +0,0 @@
include $(BUILD_ROOT)/mk/makefiles/template.mk

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/templates
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,28 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = ExampleComponentAi.xml \
ExamplePortAi.xml \
AnotherPortAi.xml \
ExampleSerializableAi.xml \
Example2SerializableAi.xml \
ExampleType.cpp \
ExampleComponentImpl.cpp #\
# main.cpp
HDR = ExampleType.hpp \
ExampleComponentImpl.hpp
SUBDIRS = test

View File

@ -1,8 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
SUBDIRS = ut

View File

@ -1,23 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/TesterBase.cpp Handcode/GTestBase.cpp main.cpp
TEST_MODS = Autocoders/Python/templates Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,16 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
DEPLOYMENT = Top
MODULE_DIR = Autocoders/Python/test/active_tester
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,29 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = Simple_ActiveComponentAi.xml \
Simple_Active_TesterComponentAi.xml \
Simple_ActiveImpl.cpp \
Simple_Active_TesterImpl.cpp \
Active_TesterTopologyAppAi.xml \
F32PortAi.xml \
U32PortAi.xml
HDR = Simple_ActiveImpl.hpp \
Simple_Active_TesterImpl.hpp
SUBDIRS = test

View File

@ -1 +0,0 @@
SUBDIRS = ut

View File

@ -1,25 +0,0 @@
#
## Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# # acknowledged.
# #
# #
# This is a template for the mod.mk file that goes in each module
# # and each module's subdirectories.
# # With a fresh checkout, "make gen_make" should be invoked. It should also be
# # run if any of the variables are updated. Any unused variables can
# # be deleted from the file.
#
# # There are some standard files that are included for reference
#
TEST_SRC = Top.cpp
TEST_MODS = Autocoders/Python/test/active_tester Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,16 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
DEPLOYMENT = Top
MODULE_DIR = Autocoders/Python/test/app1
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = DuckComponentAi.xml \
DuckImpl.cpp \
Msg1PortAi.xml
HDR = DuckImpl.hpp
SUBDIRS = test

View File

@ -1 +0,0 @@
SUBDIRS = ut

View File

@ -1,25 +0,0 @@
#
## Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# # acknowledged.
# #
# #
# This is a template for the mod.mk file that goes in each module
# # and each module's subdirectories.
# # With a fresh checkout, "make gen_make" should be invoked. It should also be
# # run if any of the variables are updated. Any unused variables can
# # be deleted from the file.
#
# # There are some standard files that are included for reference
#
TEST_SRC = Top.cpp
TEST_MODS = Autocoders/Python/test/app1 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,16 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
DEPLOYMENT = Top
MODULE_DIR = Autocoders/Python/test/app2
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = MsgPortAi.xml \
VoidPortAi.xml \
VoidArgComponentAi.xml \
App2VoidArgImpl.cpp
HDR = App2VoidArgImpl.hpp
SUBDIRS = test

View File

@ -1 +0,0 @@
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
## Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# # acknowledged.
# #
# #
#
# This is a template for the mod.mk file that goes in each module
# # and each module's subdirectories.
# # With a fresh checkout, "make gen_make" should be invoked. It should also be
# # run if any of the variables are updated. Any unused variables can
# # be deleted from the file.
#
# # There are some standard files that are included for reference
TEST_SRC = Top.cpp
TEST_MODS = Autocoders/Python/test/app2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,16 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
DEPLOYMENT = Top
MODULE_DIR = Autocoders/Python/test/array_xml
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,24 +0,0 @@
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
#This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = StringArrayArrayAi.xml \
ArrayTypeArrayAi.xml \
InternalTypeArrayAi.xml \
ArrSerialSerializableAi.xml \
Port1PortAi.xml \
Component1ComponentAi.xml
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp Tester.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest

View File

@ -1,16 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
DEPLOYMENT = Top
MODULE_DIR = Autocoders/Python/test/cnt_only
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,24 +0,0 @@
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
#This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = DuckImpl.cpp \
DuckComponentAi.xml \
Msg1PortAi.xml
HDR = Components.hpp \
Top.hpp \
DuckImpl.hpp
SUBDIRS = test

View File

@ -1 +0,0 @@
SUBDIRS = ut

View File

@ -1,25 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# # # acknowledged.
# # #
# # #
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Top.cpp
TEST_MODS = Autocoders/Python/test/cnt_only Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/command1
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,24 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = Test1ComponentAi.xml \
Test2PortAi.xml \
TestCommand1Impl.cpp \
TestCommandSourceImpl.cpp \
main.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command1 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/command2
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml TestCommandComponentImpl.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp Tester.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/command_multi_inst
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,23 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = Test1ComponentAi.xml \
Test2PortAi.xml \
TestCommand1Impl.cpp \
main.cpp \
TestCommandSourceImpl.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command_multi_inst Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/command_res
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = Test1ComponentAi.xml \
Test2PortAi.xml \
Test1ComponentImpl.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp Tester.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command_res Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/command_string
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,19 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml TestCommandImpl.cpp TestCommandSourceImpl.cpp main.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command_string Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/command_tester
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = CommandTestComponentAi.xml
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command_tester Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/comp_diff_namespace
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,21 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml \
TestPortAi.xml \
QuaternionSerializableAi.xml
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/comp_diff_namespace Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/comp_no_namespace
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml \
TestPortAi.xml \
QuaternionSerializableAi.xml
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/comp_no_namespace Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,16 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
DEPLOYMENT = Top
MODULE_DIR = Autocoders/Python/test/dictgen
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,21 +0,0 @@
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
#This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestTopologyAppAi.xml \
TestComponentAi.xml \
TestPortAi.xml
SUBDIRS = test

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/enum1port
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = DrvTimingSignalPortAi.xml

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/enum_return_port
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,10 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
SRC = TestPortAi.xml

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/event1
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml TestLogImpl.cpp TestLogRecvImpl.cpp main.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/event1 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/event2
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,20 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml QuaternionSerializableAi.xml
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/event2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/event_enum
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml TestLogImpl.cpp TestLogRecvImpl.cpp main.cpp
SUBDIRS = test

View File

@ -1 +0,0 @@
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/event_multi_inst
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml TestLogImpl.cpp TestLogRecvImpl.cpp main.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/event_string
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

View File

@ -1,18 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SRC = TestComponentAi.xml TestPortAi.xml TestLogImpl.cpp TestLogRecvImpl.cpp main.cpp
SUBDIRS = test

View File

@ -1,17 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
SUBDIRS = ut

View File

@ -1,22 +0,0 @@
#
# Copyright 2004-2008, by the California Institute of Technology.
# ALL RIGHTS RESERVED. United States Government Sponsorship
# acknowledged.
#
#
# This is a template for the mod.mk file that goes in each module
# and each module's subdirectories.
# With a fresh checkout, "make gen_make" should be invoked. It should also be
# run if any of the variables are updated. Any unused variables can
# be deleted from the file.
# There are some standard files that are included for reference
TEST_SRC = Handcode/GTestBase.cpp Handcode/TesterBase.cpp main.cpp
TEST_MODS = Autocoders/Python/test/command2 Fw/Cmd Fw/Comp Fw/Port Fw/Prm Fw/Time Fw/Tlm Fw/Types Fw/Log Fw/Obj Os Fw/Com gtest
COMPARGS = -I$(CURDIR)/test/ut/Handcode

View File

@ -1,15 +0,0 @@
# This Makefile goes in each module, and allows building of an individual module library.
# It is expected that each developer will add targets of their own for building and running
# tests, for example.
# derive module name from directory
MODULE_DIR = Autocoders/Python/test/event_throttle
MODULE = $(subst /,,$(MODULE_DIR))
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
export BUILD_ROOT
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
# Add module specific targets here

Some files were not shown because too many files have changed in this diff Show More