Subversion Repositories MLServ

Rev

Rev 2 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

# $Id: Makefile 1 2024-09-07 01:58:02Z nishi $

PWD = `pwd`
PLATFORM = generic

FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)

.PHONY: all clean ./Service ./Tool

all: ./Service ./Tool

./Service:: ./Common
        $(MAKE) -C $@ $(FLAGS)

./Tool:: ./Common
        $(MAKE) -C $@ $(FLAGS)

./Common::
        $(MAKE) -C $@ $(FLAGS)

clean:
        $(MAKE) -C ./Service clean $(FLAGS)
        $(MAKE) -C ./Tool clean $(FLAGS)
        $(MAKE) -C ./Common clean $(FLAGS)