mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-25 04:39:44 +00:00
746aa1a1c8
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17203 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
613 B
Makefile
23 lines
613 B
Makefile
#===- ./Makefile -------------------------------------------*- Makefile -*--===#
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file was developed by the LLVM research group and is distributed under
|
|
# the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
LEVEL = .
|
|
DIRS = lib/System lib/Support utils lib tools
|
|
|
|
ifneq ($(MAKECMDGOALS),tools-only)
|
|
DIRS += runtime
|
|
OPTIONAL_DIRS = examples projects
|
|
endif
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
test :: all
|
|
cd test; $(MAKE)
|
|
|
|
tools-only: all
|