From 9d399c4f837acfd5b98d00a7acac04f2e03e5e3e Mon Sep 17 00:00:00 2001 From: marha Date: Wed, 19 Jan 2011 21:39:23 +0000 Subject: Solved problems in makefile (seen when running mhmake_dbg) --- fontconfig/fc-arch/makefile | 6 +++++- fontconfig/fc-case/makefile | 4 ++++ fontconfig/fc-glyphname/makefile | 4 ++++ fontconfig/fc-lang/makefile | 4 ++++ fontconfig/src/makefile | 8 ++++---- 5 files changed, 21 insertions(+), 5 deletions(-) (limited to 'fontconfig') diff --git a/fontconfig/fc-arch/makefile b/fontconfig/fc-arch/makefile index 1ab4d0b36..2f18dff42 100644 --- a/fontconfig/fc-arch/makefile +++ b/fontconfig/fc-arch/makefile @@ -1,3 +1,7 @@ +ifneq ($(NORELDBG),1) +$(error NORELDBG should have been set to 1) +endif + INCLUDES+=..\src TMPL=fcarch.tmpl.h @@ -12,7 +16,7 @@ CSRCS=fc-arch.c DEFINES += HAVE_CONFIG_H INCLUDES := .. $(INCLUDES) -$(TARG): $(OBJDIR)\fc-arch.exe $(STMPL) ${top_srcdir}/src/fcint.h ..\config.h +$(TARG): $(OBJDIR)\fc-arch.exe $(STMPL) ..\src\fcint.h ..\config.h del -e $(TARG) $(OBJDIR)\fc-arch.exe $(ARCHITECTURE) < $(STMPL) > $(TARG).tmp move $(TARG).tmp $(TARG) diff --git a/fontconfig/fc-case/makefile b/fontconfig/fc-case/makefile index 4d93e9171..804cd6910 100644 --- a/fontconfig/fc-case/makefile +++ b/fontconfig/fc-case/makefile @@ -1,3 +1,7 @@ +ifneq ($(NORELDBG),1) +$(error NORELDBG should have been set to 1) +endif + INCLUDES+=..\src TMPL=fccase.tmpl.h diff --git a/fontconfig/fc-glyphname/makefile b/fontconfig/fc-glyphname/makefile index 138c6e418..fca00db80 100644 --- a/fontconfig/fc-glyphname/makefile +++ b/fontconfig/fc-glyphname/makefile @@ -1,3 +1,7 @@ +ifneq ($(NORELDBG),1) +$(error NORELDBG should have been set to 1) +endif + INCLUDES+=..\src TMPL=fcglyphname.tmpl.h diff --git a/fontconfig/fc-lang/makefile b/fontconfig/fc-lang/makefile index f28fcda0d..3c212fe02 100644 --- a/fontconfig/fc-lang/makefile +++ b/fontconfig/fc-lang/makefile @@ -1,3 +1,7 @@ +ifneq ($(NORELDBG),1) +$(error NORELDBG should have been set to 1) +endif + INCLUDES+=..\src TMPL=fclang.tmpl.h diff --git a/fontconfig/src/makefile b/fontconfig/src/makefile index 4a9ac4dc1..61eb00cb9 100644 --- a/fontconfig/src/makefile +++ b/fontconfig/src/makefile @@ -9,10 +9,10 @@ # -DFC_CACHEDIR='"$(FC_CACHEDIR)"' \ # -DFONTCONFIG_PATH='"$(CONFDIR)"' -load_makefile DEBUG=0 ..\fc-arch\makefile -load_makefile DEBUG=0 ..\fc-case\makefile -load_makefile DEBUG=0 ..\fc-glyphname\makefile -load_makefile DEBUG=0 ..\fc-lang\makefile +load_makefile NORELDBG=1 ..\fc-arch\makefile +load_makefile NORELDBG=1 ..\fc-case\makefile +load_makefile NORELDBG=1 ..\fc-glyphname\makefile +load_makefile NORELDBG=1 ..\fc-lang\makefile CSRCS = \ fcatomic.c \ -- cgit v1.2.3