diff options
Diffstat (limited to 'fontconfig/fc-arch/makefile')
-rw-r--r-- | fontconfig/fc-arch/makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/fontconfig/fc-arch/makefile b/fontconfig/fc-arch/makefile new file mode 100644 index 000000000..2f18dff42 --- /dev/null +++ b/fontconfig/fc-arch/makefile @@ -0,0 +1,23 @@ +ifneq ($(NORELDBG),1) +$(error NORELDBG should have been set to 1) +endif + +INCLUDES+=..\src + +TMPL=fcarch.tmpl.h +STMPL=fcarch.tmpl.h +TARG=fcarch.h + +ARCHITECTURE=x86-vc + +TTYAPP=fc-arch +CSRCS=fc-arch.c + +DEFINES += HAVE_CONFIG_H +INCLUDES := .. $(INCLUDES) + +$(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) + |