Summary: This adds the core AVR TableGen file, along with the register descriptions. Lines in AVR.td which require other TableGen files which haven't been committed yet are commented out. This is a fairly trivial patch, and should only require a quick review. I kept the line width smaller than 80 columns, but there are a few exceptions because I'm not sure how to split a string over several lines. Reviewers: stoklund Subscribers: dylanmckay, agnat Differential Revision: http://reviews.llvm.org/D14684 llvm-svn: 256120
20 lines
533 B
Makefile
20 lines
533 B
Makefile
##===- lib/Target/AVR/Makefile -----------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
LEVEL = ../../..
|
|
LIBRARYNAME = LLVMAVRCodeGen
|
|
TARGET = AVR
|
|
|
|
# Make sure that tblgen is run, first thing.
|
|
BUILT_SOURCES = AVRGenRegisterInfo.inc
|
|
|
|
DIRS = TargetInfo
|
|
|
|
include $(LEVEL)/Makefile.common
|