From b3f602ef0d4d746719d97f3ed7f9f4746261f327 Mon Sep 17 00:00:00 2001 From: Boris Boesler Date: Mon, 12 Mar 2001 15:51:14 +0000 Subject: [PATCH] minor fix for use of $(INSTALL_HEADERS) instead of INSTALL_HEADERS [r124] --- ir/adt/Makefile.in | 2 +- ir/common/Makefile.in | 2 +- ir/debug/Makefile.in | 2 +- ir/ident/Makefile.in | 2 +- ir/ir/Makefile.in | 2 +- ir/tr/Makefile.in | 2 +- ir/tv/Makefile.in | 2 +- ir/tv/tv.h | 4 ++-- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ir/adt/Makefile.in b/ir/adt/Makefile.in index 98ddbb2f4..d2d006008 100644 --- a/ir/adt/Makefile.in +++ b/ir/adt/Makefile.in @@ -11,7 +11,7 @@ topdir = ../.. subdir := adt -SOURCES := Makefile.in array.c array.h cookies.h debug.c debug.h host.h obst.h \ +SOURCES = Makefile.in array.c array.h cookies.h debug.c debug.h host.h obst.h \ pdeq.c pdeq.h pset.h set.c set.h xmalloc.c include $(topdir)/MakeRules diff --git a/ir/common/Makefile.in b/ir/common/Makefile.in index f15a84ba3..536c7216b 100644 --- a/ir/common/Makefile.in +++ b/ir/common/Makefile.in @@ -12,7 +12,7 @@ subdir := common INSTALL_HEADERS := bool.h common.h firm.h -SOURCES = INSTALL_HEADERS +SOURCES = $(INSTALL_HEADERS) SOURCES += Makefile.in panic.c tune.h xgprintf.c xp_help.h common.c firm.c \ misc.h panic.h xfprintf.c xoprintf.c xprintf.h diff --git a/ir/debug/Makefile.in b/ir/debug/Makefile.in index 0479a00b3..268a48225 100644 --- a/ir/debug/Makefile.in +++ b/ir/debug/Makefile.in @@ -11,7 +11,7 @@ topdir = ../.. subdir := debug -SOURCES := Makefile.in debinfo.c debinfo.h +SOURCES = Makefile.in debinfo.c debinfo.h include $(topdir)/MakeRules diff --git a/ir/ident/Makefile.in b/ir/ident/Makefile.in index 62b919faf..22b07719b 100644 --- a/ir/ident/Makefile.in +++ b/ir/ident/Makefile.in @@ -12,7 +12,7 @@ subdir := ident INSTALL_HEADERS = ident.h -SOURCES = INSTALL_HEADERS +SOURCES = $(INSTALL_HEADERS) SOURCES += Makefile.in ident.c ident_t.h diff --git a/ir/ir/Makefile.in b/ir/ir/Makefile.in index ab5cf0aba..bd4e0371d 100644 --- a/ir/ir/Makefile.in +++ b/ir/ir/Makefile.in @@ -14,7 +14,7 @@ INSTALL_HEADERS = irprog.h irgraph.h irnode.h irmode.h irop.h ircons.h \ irflag.h irvrfy.h irgwalk.h irgmod.h iropt.h irdump.h \ irgopt.h old_fctnames.h -SOURCES = INSTALL_HEADERS +SOURCES = $(INSTALL_HEADERS) SOURCES += Makefile.in \ ircons.c irgmod.c irgraph_t.h irnode.c iropt.c irvrfy.c \ diff --git a/ir/tr/Makefile.in b/ir/tr/Makefile.in index c61fa6869..74f4c98db 100644 --- a/ir/tr/Makefile.in +++ b/ir/tr/Makefile.in @@ -12,7 +12,7 @@ subdir := tr INSTALL_HEADERS = mangle.h type.h entity.h type_or_entity.h typewalk.h -SOURCES = INSTALL_HEADERS +SOURCES = $(INSTALL_HEADERS) SOURCES += Makefile.in \ entity.c entity_t.h typewalk.c mangle.c type.c diff --git a/ir/tv/Makefile.in b/ir/tv/Makefile.in index bba3a7faa..1651a95ce 100644 --- a/ir/tv/Makefile.in +++ b/ir/tv/Makefile.in @@ -12,7 +12,7 @@ subdir := tv INSTALL_HEADERS = tv.h -SOURCES = INSTALL_HEADERS +SOURCES = $(INSTALL_HEADERS) SOURCES += Makefile.in ieee754.h tv.c tv_t.h diff --git a/ir/tv/tv.h b/ir/tv/tv.h index 0ae4c0394..7abbb9256 100644 --- a/ir/tv/tv.h +++ b/ir/tv/tv.h @@ -73,7 +73,7 @@ void tarval_init_2 (void); /* Hash function on tarvals */ unsigned tarval_hash (tarval *); -/************************* Constructors for tarvals *************************/ +/* ************************ Constructors for tarvals ************************ */ tarval *tarval_Z_from_str (const char *, size_t, int base); tarval *tarval_B_from_str (const char *, size_t); tarval *tarval_d_from_str (const char *, size_t); @@ -114,7 +114,7 @@ typedef enum { irpn_notmask = irpn_Leg } ir_pncmp; -/********************* Arithmethic operations on tarvals *********************/ +/* ******************** Arithmethic operations on tarvals ******************** */ /* Compare a with b and return an ir_pncmp describing the relation between a and b. This is either Uo, Lt, Eq, Gt, or False if a or b are symbolic pointers which can not be compared at all. */ -- 2.20.1