Subversion Repositories MLServ

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-09-07 01:58:02Z nishi $
2
 
3
PWD = `pwd`
4
PLATFORM = generic
5
 
6
FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM)
7
 
8
.PHONY: all clean ./Service ./Tool
9
 
10
all: ./Service ./Tool
11
 
12
./Service:: ./Common
13
	$(MAKE) -C $@ $(FLAGS)
14
 
15
./Tool:: ./Common
16
	$(MAKE) -C $@ $(FLAGS)
17
 
18
./Common::
19
	$(MAKE) -C $@ $(FLAGS)
20
 
21
clean:
22
	$(MAKE) -C ./Service clean $(FLAGS)
23
	$(MAKE) -C ./Tool clean $(FLAGS)
24
	$(MAKE) -C ./Common clean $(FLAGS)