Subversion Repositories IRCServ

Rev

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

# $Id: Makefile 1 2024-08-25 09:23:35Z nishi $

PWD = `pwd`
PLATFORM = generic

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

include Platform/$(PLATFORM).mk

.PHONY: all clean ./Service

all: ./Service

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

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