Skip to content
Makefile 1.45 KiB
Newer Older
#===- ./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.
# 
#===------------------------------------------------------------------------===#
Chris Lattner's avatar
Chris Lattner committed
LEVEL = .
DIRS = lib/System lib/Support utils lib tools 
Chris Lattner's avatar
Chris Lattner committed

ifneq ($(MAKECMDGOALS),tools-only)
DIRS += runtime
OPTIONAL_DIRS = examples projects
Chris Lattner's avatar
Chris Lattner committed
include $(LEVEL)/Makefile.common

.PHONY: debug-opt-prof
debug-opt-prof:
	$(Echo) Building Debug Version
	$(Verb) $(MAKE)
	$(Echo)
	$(Echo) Building Optimized Version
	$(Echo)
	$(Verb) $(MAKE) ENABLE_OPTIMIZED=1
	$(Echo)
	$(Echo) Building Profiling Version
	$(Echo)
	$(Verb) $(MAKE) ENABLE_PROFILING=1

Reid Spencer's avatar
Reid Spencer committed
dist-hook::
	$(Echo) Eliminating CVS directories from distribution
	$(Verb) $(RM) -rf `find $(TopDistDir) -type d -name CVS -print`
	$(Echo) Eliminating files constructed by configure
	$(Verb) $(RM) -f \
	  $(TopDistDir)/include/llvm/ADT/hash_map  \
	  $(TopDistDir)/include/llvm/ADT/hash_set  \
	  $(TopDistDir)/include/llvm/ADT/iterator  \
	  $(TopDistDir)/include/llvm/Config/config.h  \
	  $(TopDistDir)/include/llvm/Support/DataTypes.h  \
	  $(TopDistDir)/include/llvm/Support/ThreadSupport.h
	$(MAKE) -C test check-dejagnu TESTSUITE=$(TESTSUITE)