Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | ##===- tools/gccld/Makefile --------------------------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Chris Lattner | e692fc8 | 2007-12-29 20:07:17 +0000 | [diff] [blame] | 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
| 10 | LEVEL = ../.. |
| 11 | |
| 12 | include $(LEVEL)/Makefile.common |
| 13 | |
| 14 | install-local:: $(PROJ_bindir)/gccld |
| 15 | |
| 16 | $(PROJ_bindir)/gccld : gccld.sh Makefile |
| 17 | $(Echo) Installing gccld shell script. |
| 18 | $(Verb) sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@ |
| 19 | $(Verb) chmod 0755 $@ |
| 20 | |
| 21 | all-local:: $(ToolDir)/gccld |
| 22 | |
| 23 | $(ToolDir)/gccld : gccld.sh Makefile |
| 24 | $(Echo) Making $(ToolDir)/gccld shell script. |
| 25 | $(Verb) sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@ |
| 26 | $(Verb) chmod 0755 $@ |
| 27 | |
| 28 | clean-local:: |
| 29 | $(Verb)$(RM) -f $(ToolDir)/gccld |