From 00e1ce4316cbb45c9be3bd2f36b3bfa9b5939c47 Mon Sep 17 00:00:00 2001 From: nishi Date: Wed, 12 Jun 2024 06:03:30 +0000 Subject: [PATCH] move makefiles git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@255 d4a5a174-5a4a-5b4b-b672-37683c10d7d5 --- GNUmakefile | 6 +++--- Makefile | 6 +++--- {Platforms => Makefiles/Platforms}/dos.mk | 0 {Platforms => Makefiles/Platforms}/dos32a.mk | 0 {Platforms => Makefiles/Platforms}/dos4g.mk | 0 {Platforms => Makefiles/Platforms}/dos4gnz.mk | 0 {Platforms => Makefiles/Platforms}/watcom.mk | 0 {Platforms => Makefiles/Platforms}/win32.mk | 0 {Platforms => Makefiles/Platforms}/win64.mk | 0 {Platforms => Makefiles/Platforms}/win9x.mk | 0 common-decl.mk => Makefiles/common-decl.mk | 0 common.mk => Makefiles/common.mk | 0 12 files changed, 6 insertions(+), 6 deletions(-) rename {Platforms => Makefiles/Platforms}/dos.mk (100%) rename {Platforms => Makefiles/Platforms}/dos32a.mk (100%) rename {Platforms => Makefiles/Platforms}/dos4g.mk (100%) rename {Platforms => Makefiles/Platforms}/dos4gnz.mk (100%) rename {Platforms => Makefiles/Platforms}/watcom.mk (100%) rename {Platforms => Makefiles/Platforms}/win32.mk (100%) rename {Platforms => Makefiles/Platforms}/win64.mk (100%) rename {Platforms => Makefiles/Platforms}/win9x.mk (100%) rename common-decl.mk => Makefiles/common-decl.mk (100%) rename common.mk => Makefiles/common.mk (100%) diff --git a/GNUmakefile b/GNUmakefile index 37fb4ed..177134a 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,9 +1,9 @@ # $Id$ -include common-decl.mk +include Makefiles/common-decl.mk ifneq ("$(PLATFORM)", "") -include Platforms/$(PLATFORM).mk +include Makefiles/Platforms/$(PLATFORM).mk endif -include common.mk +include Makefiles/common.mk diff --git a/Makefile b/Makefile index 351be58..7e0f0b3 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ # $Id$ -include common-decl.mk +include Makefiles/common-decl.mk .if "$(PLATFORM)" != "" -include Platforms/$(PLATFORM).mk +include Makefiles/Platforms/$(PLATFORM).mk .endif -include common.mk +include Makefiles/common.mk diff --git a/Platforms/dos.mk b/Makefiles/Platforms/dos.mk similarity index 100% rename from Platforms/dos.mk rename to Makefiles/Platforms/dos.mk diff --git a/Platforms/dos32a.mk b/Makefiles/Platforms/dos32a.mk similarity index 100% rename from Platforms/dos32a.mk rename to Makefiles/Platforms/dos32a.mk diff --git a/Platforms/dos4g.mk b/Makefiles/Platforms/dos4g.mk similarity index 100% rename from Platforms/dos4g.mk rename to Makefiles/Platforms/dos4g.mk diff --git a/Platforms/dos4gnz.mk b/Makefiles/Platforms/dos4gnz.mk similarity index 100% rename from Platforms/dos4gnz.mk rename to Makefiles/Platforms/dos4gnz.mk diff --git a/Platforms/watcom.mk b/Makefiles/Platforms/watcom.mk similarity index 100% rename from Platforms/watcom.mk rename to Makefiles/Platforms/watcom.mk diff --git a/Platforms/win32.mk b/Makefiles/Platforms/win32.mk similarity index 100% rename from Platforms/win32.mk rename to Makefiles/Platforms/win32.mk diff --git a/Platforms/win64.mk b/Makefiles/Platforms/win64.mk similarity index 100% rename from Platforms/win64.mk rename to Makefiles/Platforms/win64.mk diff --git a/Platforms/win9x.mk b/Makefiles/Platforms/win9x.mk similarity index 100% rename from Platforms/win9x.mk rename to Makefiles/Platforms/win9x.mk diff --git a/common-decl.mk b/Makefiles/common-decl.mk similarity index 100% rename from common-decl.mk rename to Makefiles/common-decl.mk diff --git a/common.mk b/Makefiles/common.mk similarity index 100% rename from common.mk rename to Makefiles/common.mk -- 2.43.0