Misha Brukman | b188393 | 2004-10-29 23:26:09 +0000 | [diff] [blame] | 1 | ##===- tools/gccas/Makefile --------------------------------*- Makefile -*-===## |
John Criswell | e2fab73 | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
Reid Spencer | bd70c0b | 2007-02-02 15:50:58 +0000 | [diff] [blame^] | 5 | # This file was developed by Reid Spencer and is distributed under the |
| 6 | # University of Illinois Open Source License. See LICENSE.TXT for details. |
John Criswell | e2fab73 | 2003-10-20 22:29:16 +0000 | [diff] [blame] | 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 9 | LEVEL = ../.. |
| 10 | |
Chris Lattner | ecbde33 | 2001-10-31 04:28:11 +0000 | [diff] [blame] | 11 | include $(LEVEL)/Makefile.common |
Reid Spencer | bd70c0b | 2007-02-02 15:50:58 +0000 | [diff] [blame^] | 12 | |
| 13 | install-local:: $(PROJ_bindir)/gccas |
| 14 | |
| 15 | $(PROJ_bindir)/gccas : gccas.sh |
| 16 | sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@ |
| 17 | |
| 18 | all-local:: $(ToolDir)/gccas |
| 19 | |
| 20 | $(ToolDir)/gccas : gccas.sh |
| 21 | sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@ |
| 22 | |