diff options
Diffstat (limited to 'llvm/tools/llvm-as/Makefile')
-rw-r--r-- | llvm/tools/llvm-as/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/tools/llvm-as/Makefile b/llvm/tools/llvm-as/Makefile new file mode 100644 index 00000000000..3fa7984e621 --- /dev/null +++ b/llvm/tools/llvm-as/Makefile @@ -0,0 +1,9 @@ +LEVEL = ../.. +include $(LEVEL)/Makefile.common + +all:: as +clean:: + rm -f as + +as : $(ObjectsG) + $(LinkG) -o as $(ObjectsG) -lvmcore -lasmparser -lbcwriter -lanalysis -lasmwriter |