Subversion Repositories IRCServ

Rev

Rev 2 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 nishi 1
# $Id: Makefile 1 2024-08-25 09:23:35Z nishi $
2
 
3
PWD = `pwd`
4
PLATFORM = generic
5
 
6
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
7
 
8
include Platform/$(PLATFORM).mk
9
 
10
.PHONY: all clean ./Service
11
 
12
all: ./Service
13
 
14
./Service::
15
	$(MAKE) -C $@ $(FLAGS)
16
 
17
clean:
18
	$(MAKE) -C ./Service $(FLAGS) clean