2004-10-29 23:26:09 +00:00
|
|
|
##===- tools/gccas/Makefile --------------------------------*- Makefile -*-===##
|
2003-10-20 22:29:16 +00:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-02-02 15:50:58 +00:00
|
|
|
# This file was developed by Reid Spencer and is distributed under the
|
|
|
|
# University of Illinois Open Source License. See LICENSE.TXT for details.
|
2003-10-20 22:29:16 +00:00
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2001-10-31 04:28:11 +00:00
|
|
|
LEVEL = ../..
|
|
|
|
|
|
|
|
include $(LEVEL)/Makefile.common
|
2007-02-02 15:50:58 +00:00
|
|
|
|
|
|
|
install-local:: $(PROJ_bindir)/gccas
|
|
|
|
|
|
|
|
$(PROJ_bindir)/gccas : gccas.sh
|
|
|
|
sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@
|
|
|
|
|
|
|
|
all-local:: $(ToolDir)/gccas
|
|
|
|
|
|
|
|
$(ToolDir)/gccas : gccas.sh
|
|
|
|
sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@
|
|
|
|
|