mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
21 lines
487 B
Makefile
21 lines
487 B
Makefile
|
##===- projects/sample/Makefile ----------------------------*- Makefile -*-===##
|
||
|
#
|
||
|
# This is a sample Makefile for a project that uses LLVM.
|
||
|
#
|
||
|
##===----------------------------------------------------------------------===##
|
||
|
|
||
|
#
|
||
|
# Indicates our relative path to the top of the project's root directory.
|
||
|
#
|
||
|
LEVEL = ../..
|
||
|
|
||
|
#
|
||
|
# Directories that needs to be built.
|
||
|
#
|
||
|
DIRS = lib tools test samples
|
||
|
|
||
|
#
|
||
|
# Include the Master Makefile that knows how to build all.
|
||
|
#
|
||
|
include $(LEVEL)/Makefile.common
|