From 8e8d7ad4f61204cc2bf871f2985a360db28adbf7 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 4 Jun 2001 23:38:27 +0000 Subject: [PATCH] Support TAB variable --- ppremake/configure.in | 2 +- ppremake/ppremake.cxx | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ppremake/configure.in b/ppremake/configure.in index a71e199bc4..accdb27125 100644 --- a/ppremake/configure.in +++ b/ppremake/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(ppremake.cxx) -AM_INIT_AUTOMAKE(ppremake, 0.61) +AM_INIT_AUTOMAKE(ppremake, 1.00) AM_CONFIG_HEADER(config.h) AC_PREFIX_DEFAULT(/usr/local/panda) diff --git a/ppremake/ppremake.cxx b/ppremake/ppremake.cxx index e6463b6a8e..a82eb77ab4 100644 --- a/ppremake/ppremake.cxx +++ b/ppremake/ppremake.cxx @@ -298,6 +298,11 @@ main(int argc, char *argv[]) { global_scope.define_variable("PPREMAKE_CONFIG", ppremake_config); } + // Also, it's convenient to have a way to represent the literal tab + // character, without actually putting a literal tab character in + // the source file. + global_scope.define_variable("TAB", "\t"); + PPMain ppmain(&global_scope); if (!ppmain.read_source(".")) { exit(1);