1 ##===- llvmc/examples/Skeleton/Makefile --------------------*- Makefile -*-===## 2 # 3 # The LLVM Compiler Infrastructure 4 # 5 # This file is distributed under the University of Illinois Open 6 # Source License. See LICENSE.TXT for details. 7 # 8 ##===----------------------------------------------------------------------===## 9 10 # Change this so that $(LEVEL)/Makefile.common refers to 11 # $LLVM_OBJ_DIR/Makefile.common or $YOUR_LLVM_BASED_PROJECT/Makefile.common. 12 export LEVEL = ../../../.. 13 14 # Change this to the name of your LLVMC-based driver. 15 LLVMC_BASED_DRIVER = llvmc-skeleton 16 17 # Change this to the name of .inc file built from your .td file. 18 BUILT_SOURCES = AutoGenerated.inc 19 20 include $(LEVEL)/Makefile.common 21