]> rtime.felk.cvut.cz Git - omk.git/blob - tests/vxworks/fibo-rtplib/Makefile
Leaf makefiles in tests replaced with dash-friendly version
[omk.git] / tests / vxworks / fibo-rtplib / Makefile
1 # Generic directory or leaf node makefile for OCERA make framework
2
3 ifndef MAKERULES_DIR
4 MAKERULES_DIR := $(shell ( old_pwd="" ;  while [ ! -e Makefile.rules ] ; do if [ "$$old_pwd" = `pwd`  ] ; then exit 1 ; else old_pwd=`pwd` ; cd -L .. 2>/dev/null ; fi ; done ; pwd ) )
5 endif
6
7 ifeq ($(MAKERULES_DIR),)
8 all : default
9 .DEFAULT::
10         @echo -e "\nThe Makefile.rules has not been found in this or partent directory\n"
11 else
12 include $(MAKERULES_DIR)/Makefile.rules
13 endif
14