# Makefile,v 1.1 2003/11/18 14:55:10 smcqueen Exp

#----------------------------------------------------------------------------
#       GNU Workspace
#----------------------------------------------------------------------------

include $(ACE_ROOT)/include/makeinclude/macros.GNU
TARGETS_NESTED := $(TARGETS_NESTED:.nested=)
MFILES = \
         Makefile.Bug_1330_Server \
         Makefile.Bug_1330_Client

$(TARGETS_NESTED):
ifneq (Windows,$(findstring Windows,$(OS)))
	@for file in $(MFILES); do \
	$(MAKE) -f `basename $$file` -C `dirname $$file` $(@); \
	done
else
	-@cmd /c "$(MAKE) -f Makefile.Bug_1330_Server -C . $(@)"
	-@cmd /c "$(MAKE) -f Makefile.Bug_1330_Client -C . $(@)"
endif
