mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-19 02:03:11 +00:00
4946a660b3
llvm-svn: 17203
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
|