From 57a5802c3c12fc46ae564eb111c7f2fbbb15eee7 Mon Sep 17 00:00:00 2001 From: Nishi Date: Fri, 11 Oct 2024 14:05:59 +0000 Subject: [PATCH] stuff git-svn-id: file:///raid/svn-personal/rbuild/trunk@3 c68d3453-7f82-0740-9748-1d72386a946b --- Client/Makefile | 3 +++ Common/Makefile | 3 +++ Makefile | 24 ++++++++++++++++++++++++ Platform/generic.mk | 1 + Server/Makefile | 3 +++ 5 files changed, 34 insertions(+) create mode 100644 Client/Makefile create mode 100644 Common/Makefile create mode 100644 Makefile create mode 100644 Platform/generic.mk create mode 100644 Server/Makefile diff --git a/Client/Makefile b/Client/Makefile new file mode 100644 index 0000000..b9530bf --- /dev/null +++ b/Client/Makefile @@ -0,0 +1,3 @@ +# $Id$ + +include $(PWD)/Platform/$(PLATFORM).mk diff --git a/Common/Makefile b/Common/Makefile new file mode 100644 index 0000000..b9530bf --- /dev/null +++ b/Common/Makefile @@ -0,0 +1,3 @@ +# $Id$ + +include $(PWD)/Platform/$(PLATFORM).mk diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bb53fec --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +# $Id$ + +PLATFORM = generic +PWD = `pwd` + +FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) + +.PHONY: all ./Common ./Server ./Client clean + +all: ./Common ./Server ./Client + +./Common:: + $(MAKE) -C $@ $(FLAGS) + +./Server:: ./Common + $(MAKE) -C $@ $(FLAGS) + +./Client:: ./Common + $(MAKE) -C $@ $(FLAGS) + +clean: + $(MAKE) -C ./Common clean + $(MAKE) -C ./Server clean + $(MAKE) -C ./Client clean diff --git a/Platform/generic.mk b/Platform/generic.mk new file mode 100644 index 0000000..fbbab2d --- /dev/null +++ b/Platform/generic.mk @@ -0,0 +1 @@ +# $Id$ diff --git a/Server/Makefile b/Server/Makefile new file mode 100644 index 0000000..b9530bf --- /dev/null +++ b/Server/Makefile @@ -0,0 +1,3 @@ +# $Id$ + +include $(PWD)/Platform/$(PLATFORM).mk -- 2.45.2