aboutsummaryrefslogtreecommitdiffstats
path: root/ortho/gcc
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-11-04 03:39:42 +0100
committerTristan Gingold <tgingold@free.fr>2014-11-04 03:39:42 +0100
commitcaf0c333ae0a47b13572bea17c6779ae9d496621 (patch)
tree93778e6c87582bf6e50817720dd12e9382429406 /ortho/gcc
parentd1cd3db01d5b43a7103e5d0fda1bdd1729a240f2 (diff)
downloadghdl-caf0c333ae0a47b13572bea17c6779ae9d496621.tar.gz
ghdl-caf0c333ae0a47b13572bea17c6779ae9d496621.tar.bz2
ghdl-caf0c333ae0a47b13572bea17c6779ae9d496621.zip
Remove unused file.
Diffstat (limited to 'ortho/gcc')
-rw-r--r--ortho/gcc/Makefile.inc54
1 files changed, 0 insertions, 54 deletions
diff --git a/ortho/gcc/Makefile.inc b/ortho/gcc/Makefile.inc
deleted file mode 100644
index c7f9a6a9a..000000000
--- a/ortho/gcc/Makefile.inc
+++ /dev/null
@@ -1,54 +0,0 @@
-# -*- Makefile -*- for the gcc implemantation of ortho.
-# Copyright (C) 2005 Tristan Gingold
-#
-# GHDL is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License as published by the Free
-# Software Foundation; either version 2, or (at your option) any later
-# version.
-#
-# GHDL is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or
-# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
-# for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GCC; see the file COPYING. If not, write to the Free
-# Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-# 02111-1307, USA.
-
-# Variable used:
-# AGCC_GCCSRC_DIR: the gcc source base directory (ie gcc-X.Y.Z-objs/)
-# AGCC_GCCOBJ_DIR: the gcc objects base directory
-# agcc_srcdir: the agcc source directory
-# agcc_objdir: the agcc object directory
-
-AGCC_INC_FLAGS=-I$(AGCC_GCCOBJ_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/include \
- -I$(AGCC_GCCSRC_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/gcc/config \
- -I$(AGCC_GCCSRC_DIR)/libcpp/include $(GMPINC)
-AGCC_CFLAGS=-g -Wall -DIN_GCC $(AGCC_INC_FLAGS)
-
-AGCC_LOCAL_OBJS=ortho-lang.o
-
-AGCC_DEPS := $(AGCC_LOCAL_OBJS)
-AGCC_OBJS := $(AGCC_LOCAL_OBJS) \
- $(AGCC_GCCOBJ_DIR)gcc/toplev.o \
- $(AGCC_GCCOBJ_DIR)gcc/vec.o \
- $(AGCC_GCCOBJ_DIR)gcc/attribs.o \
- $(AGCC_GCCOBJ_DIR)gcc/libbackend.a \
- $(AGCC_GCCOBJ_DIR)libcpp/libcpp.a \
- $(AGCC_GCCOBJ_DIR)libiberty/libiberty.a
-
-ortho-lang.o: $(agcc_srcdir)/ortho-lang.c \
- $(AGCC_GCCOBJ_DIR)gcc/gtype-vhdl.h \
- $(AGCC_GCCOBJ_DIR)gcc/gt-vhdl-ortho-lang.h
- $(COMPILER) -c -o $@ $< $(AGCC_CFLAGS) $(INCLUDES)
-
-agcc-clean: force
- $(RM) -f $(agcc_objdir)/*.o
- $(RM) -f $(agcc_srcdir)/*~
-
-agcc-maintainer-clean: force
- $(RM) -f $(AGCC_DEPS)
-
-
-.PHONY: agcc-clean agcc-maintainer-clean