SOEM/test/win32/Makefile

34 lines
1.4 KiB
Makefile

#******************************************************************************
# * *** ***
# *** *** ***
# *** **** ********** *** ***** *** **** *****
# ********* ********** *** ********* ************ *********
# **** *** *** *** *** **** ***
# *** *** ****** *** *********** *** **** *****
# *** *** ****** *** ************* *** **** *****
# *** **** **** *** *** *** **** ***
# *** ******* ***** ************** ************* *********
# *** ***** *** ******* ** ** ****** *****
# t h e r e a l t i m e t a r g e t e x p e r t s
#
# http://www.rt-labs.com
# Copyright (C) 2006. rt-labs AB, Sweden. All rights reserved.
#------------------------------------------------------------------------------
# $Id: Makefile 262 2012-08-14 06:14:07Z rtlaka $
#------------------------------------------------------------------------------
SUBDIRS = ebox eepromtool red_test simple_test slaveinfo firm_update
all: subdirs
subdirs:
@for dir in $(SUBDIRS); do \
($(MAKE) -C $$dir all) || exit; \
done
clean:
@for dir in $(SUBDIRS); do \
($(MAKE) -C $$dir clean) \
done