Subversion Repositories MLServ

Rev

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

# $Id: Makefile 2 2024-09-07 02:00:41Z nishi $

PWD = `pwd`
PLATFORM = generic
PREFIX = /usr/local

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

.PHONY: all clean ./Service ./Tool

all: ./Service ./Tool

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

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

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

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

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