Home | History | Annotate | Download | only in sample
      1 ##===- projects/sample/Makefile ----------------------------*- Makefile -*-===##

      2 #

      3 # This is a sample Makefile for a project that uses LLVM.

      4 #

      5 ##===----------------------------------------------------------------------===##

      6 
      7 #

      8 # Indicates our relative path to the top of the project's root directory.

      9 #

     10 LEVEL = .
     11 DIRS = lib tools
     12 EXTRA_DIST = include
     13 
     14 #

     15 # Include the Master Makefile that knows how to build all.

     16 #

     17 include $(LEVEL)/Makefile.common
     18 
     19