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