From: nishi Date: Wed, 12 Jun 2024 06:03:30 +0000 (+0000) Subject: move makefiles X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=00e1ce4316cbb45c9be3bd2f36b3bfa9b5939c47;p=dataworks.git move makefiles git-svn-id: file:///raid/svn-main/nishi-dataworks/trunk@255 d4a5a174-5a4a-5b4b-b672-37683c10d7d5 --- 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