diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-17 15:01:59 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-17 15:01:59 +0000 |
commit | fa4cf331edfa0d9d37479494ac3bc6ef0e0449b0 (patch) | |
tree | b83a5e0d662aaa039f416a19db903e8f661288d6 /runtime | |
parent | ec660ae754de4fcfbaf78138a38bd82dce8a4f44 (diff) | |
download | external_llvm-fa4cf331edfa0d9d37479494ac3bc6ef0e0449b0.zip external_llvm-fa4cf331edfa0d9d37479494ac3bc6ef0e0449b0.tar.gz external_llvm-fa4cf331edfa0d9d37479494ac3bc6ef0e0449b0.tar.bz2 |
Add missing targets for install/clean
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17090 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/GCCLibraries/crtend/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/GCCLibraries/crtend/Makefile.am b/runtime/GCCLibraries/crtend/Makefile.am index 71bb077..8aca6ef 100644 --- a/runtime/GCCLibraries/crtend/Makefile.am +++ b/runtime/GCCLibraries/crtend/Makefile.am @@ -37,9 +37,13 @@ $(AggregateLib) : $(BCDIR) $(ComponentLibs) all-am: $(AggregateLib) clean-am: clean-crtend + +clean-crtend: $(RM) -f $(AggregateLib) *.bc install-am: install-crtend + +install-crtend: $(INSTALL_DATA) '$(AggregateLib)' $(DESTDIR)$(libdir) MainObj := crtend.bc listend.bc |