Home | History | Annotate | Download | only in sample
      1 ##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
      2 
      3 #
      4 # Indicate where we are relative to the top of the source tree.
      5 #
      6 LEVEL=../..
      7 
      8 #
      9 # Give the name of the tool.
     10 #
     11 TOOLNAME=Sample
     12 
     13 #
     14 # List libraries that we'll need
     15 # We use LIBS because sample is a dynamic library.
     16 #
     17 USEDLIBS = sample.a
     18 
     19 #
     20 # Include Makefile.common so we know what to do.
     21 #
     22 include $(LEVEL)/Makefile.common
     23 
     24