 
# Copyright 2007-2016 United States Government as represented by the
# Administrator of The National Aeronautics and Space Administration.
# No copyright is claimed in the United States under Title 17, U.S. Code.
# All Rights Reserved.






GMSEC_HOME=..
include $(GMSEC_HOME)/config/$(GMSEC_PLATFORM)

default: 
	for wrapper in $(WRAPPERS) ; do \
		(cd $$wrapper && $(MAKE) ) \
	done

clean: 
	for wrapper in $(WRAPPERS) ; do \
		(cd $$wrapper && $(MAKE) clean ) \
	done

