mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
8bff509803
of the llvm source directory. The main modification was to add new environment variables: one set for llvm entities and another set for source entities current being compiled. This should make the Makefile more flexible and easier to understand as each environment variable only does one thing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6679 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
135 B
Makefile
9 lines
135 B
Makefile
LEVEL = .
|
|
DIRS = lib/Support utils lib tools
|
|
OPTIONAL_DIRS = projects
|
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
test :: all
|
|
cd test; $(MAKE)
|