blob: d1dd6269be2ddd92dd8cbec7b366dd180c9ba582 [file] [log] [blame]
Misha Brukmanb1883932004-10-29 23:26:09 +00001##===- tools/gccas/Makefile --------------------------------*- Makefile -*-===##
John Criswelle2fab732003-10-20 22:29:16 +00002#
3# The LLVM Compiler Infrastructure
4#
Reid Spencerbd70c0b2007-02-02 15:50:58 +00005# 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 Criswelle2fab732003-10-20 22:29:16 +00007#
8##===----------------------------------------------------------------------===##
Chris Lattnerecbde332001-10-31 04:28:11 +00009LEVEL = ../..
10
Chris Lattnerecbde332001-10-31 04:28:11 +000011include $(LEVEL)/Makefile.common
Reid Spencerbd70c0b2007-02-02 15:50:58 +000012
13install-local:: $(PROJ_bindir)/gccas
14
15$(PROJ_bindir)/gccas : gccas.sh
16 sed "s#@TOOLDIR@#$(PROJ_bindir)#" $< > $@
17
18all-local:: $(ToolDir)/gccas
19
20$(ToolDir)/gccas : gccas.sh
21 sed "s#@TOOLDIR@#$(ToolDir)#" $< > $@
22