diff options
author | marha <marha@users.sourceforge.net> | 2011-01-19 21:39:23 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-01-19 21:39:23 +0000 |
commit | 9d399c4f837acfd5b98d00a7acac04f2e03e5e3e (patch) | |
tree | 070c1786dfca0457c860420e37183ed1686f9da7 /fontconfig | |
parent | 1d6db05ee9b24b67aa55c631f7763e960b47b68f (diff) | |
download | vcxsrv-9d399c4f837acfd5b98d00a7acac04f2e03e5e3e.tar.gz vcxsrv-9d399c4f837acfd5b98d00a7acac04f2e03e5e3e.tar.bz2 vcxsrv-9d399c4f837acfd5b98d00a7acac04f2e03e5e3e.zip |
Solved problems in makefile (seen when running mhmake_dbg)
Diffstat (limited to 'fontconfig')
-rw-r--r-- | fontconfig/fc-arch/makefile | 6 | ||||
-rw-r--r-- | fontconfig/fc-case/makefile | 4 | ||||
-rw-r--r-- | fontconfig/fc-glyphname/makefile | 4 | ||||
-rw-r--r-- | fontconfig/fc-lang/makefile | 4 | ||||
-rw-r--r-- | fontconfig/src/makefile | 8 |
5 files changed, 21 insertions, 5 deletions
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 \ |