Build system: Move all build-related files (except the top-level Makefile) into the tools/ sub-directory. This really cleans up the top-level directory.

This commit is contained in:
Gregory Nutt 2018-05-29 12:14:55 -06:00
parent f2a89813f2
commit 53a4408428
9 changed files with 36 additions and 22 deletions

View file

@ -1,7 +1,7 @@
############################################################################
# Makefile
#
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
# Copyright (C) 2012, 2018 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@ -43,7 +43,7 @@
-include .config
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
include Makefile.win
include tools/Makefile.win
else
include Makefile.unix
include tools/Makefile.unix
endif