This adds part of the target info code, and adds modifications to the build scripts so that AVR is recognized a supported, experimental backend. It does not include any AVR-specific code, just the bare sources required for a backend to exist. From D14039. llvm-svn: 252865
20 lines
510 B
Makefile
20 lines
510 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 =
|
|
|
|
DIRS = TargetInfo
|
|
|
|
include $(LEVEL)/Makefile.common
|