minor fix for use of $(INSTALL_HEADERS) instead of INSTALL_HEADERS
authorBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Mon, 12 Mar 2001 15:51:14 +0000 (15:51 +0000)
committerBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Mon, 12 Mar 2001 15:51:14 +0000 (15:51 +0000)
[r124]

ir/adt/Makefile.in
ir/common/Makefile.in
ir/debug/Makefile.in
ir/ident/Makefile.in
ir/ir/Makefile.in
ir/tr/Makefile.in
ir/tv/Makefile.in
ir/tv/tv.h

index 98ddbb2..d2d0060 100644 (file)
@@ -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
index f15a84b..536c721 100644 (file)
@@ -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
index 0479a00..268a482 100644 (file)
@@ -11,7 +11,7 @@ topdir = ../..
 subdir := debug
 
 
-SOURCES := Makefile.in debinfo.c debinfo.h
+SOURCES = Makefile.in debinfo.c debinfo.h
 
 include $(topdir)/MakeRules
 
index 62b919f..22b0771 100644 (file)
@@ -12,7 +12,7 @@ subdir := ident
 
 INSTALL_HEADERS = ident.h
 
-SOURCES = INSTALL_HEADERS
+SOURCES = $(INSTALL_HEADERS)
 
 SOURCES += Makefile.in ident.c ident_t.h
 
index ab5cf0a..bd4e037 100644 (file)
@@ -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         \
index c61fa68..74f4c98 100644 (file)
@@ -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
index bba3a7f..1651a95 100644 (file)
@@ -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
 
index 0ae4c03..7abbb92 100644 (file)
@@ -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. */