Makefile revision 746aa1a1c869fe1f33bd475d3389d8b49f150abc
1#===- ./Makefile -------------------------------------------*- Makefile -*--===#
2# 
3#                     The LLVM Compiler Infrastructure
4#
5# This file was developed by the LLVM research group and is distributed under
6# the University of Illinois Open Source License. See LICENSE.TXT for details.
7# 
8#===------------------------------------------------------------------------===#
9LEVEL = .
10DIRS = lib/System lib/Support utils lib tools 
11
12ifneq ($(MAKECMDGOALS),tools-only)
13DIRS += runtime
14OPTIONAL_DIRS = examples projects
15endif
16
17include $(LEVEL)/Makefile.common
18
19test :: all
20	cd test; $(MAKE)
21
22tools-only: all
23