Makefile revision 4fd606d1f5abe38e1f42c38de1d2e895166bd0f4
1N/A## @file
1N/A# Windows makefile for Base Tools project build.
1N/A#
1N/A# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>
1N/A# This program and the accompanying materials
1N/A# are licensed and made available under the terms and conditions of the BSD License
1N/A# which accompanies this distribution. The full text of the license may be found at
1N/A# http://opensource.org/licenses/bsd-license.php
1N/A#
1N/A# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
1N/A# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
1N/A#
1N/A
1N/ASUBDIRS = Source\C Source\Python
1N/A
1N/Aall: c python
1N/A
1N/Ac :
1N/A @Source\C\Makefiles\NmakeSubdirs.bat all Source\C
1N/A
1N/Apython:
1N/A @Source\C\Makefiles\NmakeSubdirs.bat all Source\Python
1N/A
1N/Asubdirs: $(SUBDIRS)
1N/A @Source\C\Makefiles\NmakeSubdirs.bat all $**
1N/A
1N/A.PHONY: clean
1N/Aclean:
1N/A @Source\C\Makefiles\NmakeSubdirs.bat clean $(SUBDIRS)
1N/A
1N/A.PHONY: cleanall
1N/Acleanall:
1N/A @Source\C\Makefiles\NmakeSubdirs.bat cleanall $(SUBDIRS)
1N/A
1N/A