From ebd61998128c2b1c983f12c4fc1f24797cc47100 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 6 Jun 2009 06:48:15 +0000 Subject: [PATCH] changed Makefile.am and Awk.hpp --- qse/include/qse/Makefile.am | 8 ++++---- qse/include/qse/Makefile.in | 8 ++++---- qse/include/qse/awk/Awk.hpp | 3 ++- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/qse/include/qse/Makefile.am b/qse/include/qse/Makefile.am index 3330eb94..1c029e0a 100644 --- a/qse/include/qse/Makefile.am +++ b/qse/include/qse/Makefile.am @@ -13,9 +13,9 @@ pkgincludedir= $(includedir)/qse CLEANFILES = *dist install-data-hook: - @"$(GREP)" -E "#define[ ]+QSE_" "$(srcdir)/config.h" > "$(DESTDIR)$(pkgincludedir)/config.h" - @"$(RM)" -f "$(DESTDIR)$(pkgincludedir)/config.h.in" - @"$(SED)" 's|/\*#define QSE_HAVE_CONFIG_H\*/|#define QSE_HAVE_CONFIG_H|' "$(srcdir)/types.h" > "$(DESTDIR)$(pkgincludedir)/types.h" + @$(GREP) -E "#define[ ]+QSE_" "$(srcdir)/config.h" > "$(DESTDIR)$(pkgincludedir)/config.h" + @$(RM) "$(DESTDIR)$(pkgincludedir)/config.h.in" + @$(SED) 's|/\*#define QSE_HAVE_CONFIG_H\*/|#define QSE_HAVE_CONFIG_H|' "$(srcdir)/types.h" > "$(DESTDIR)$(pkgincludedir)/types.h" uninstall-hook: - @"$(RM)" -f "$(DESTDIR)$(pkgincludedir)/config.h" + @$(RM) "$(DESTDIR)$(pkgincludedir)/config.h" diff --git a/qse/include/qse/Makefile.in b/qse/include/qse/Makefile.in index 1440ede4..6bbb105f 100644 --- a/qse/include/qse/Makefile.in +++ b/qse/include/qse/Makefile.in @@ -574,12 +574,12 @@ uninstall-am: uninstall-pkgincludeHEADERS install-data-hook: - @"$(GREP)" -E "#define[ ]+QSE_" "$(srcdir)/config.h" > "$(DESTDIR)$(pkgincludedir)/config.h" - @"$(RM)" -f "$(DESTDIR)$(pkgincludedir)/config.h.in" - @"$(SED)" 's|/\*#define QSE_HAVE_CONFIG_H\*/|#define QSE_HAVE_CONFIG_H|' "$(srcdir)/types.h" > "$(DESTDIR)$(pkgincludedir)/types.h" + @$(GREP) -E "#define[ ]+QSE_" "$(srcdir)/config.h" > "$(DESTDIR)$(pkgincludedir)/config.h" + @$(RM) "$(DESTDIR)$(pkgincludedir)/config.h.in" + @$(SED) 's|/\*#define QSE_HAVE_CONFIG_H\*/|#define QSE_HAVE_CONFIG_H|' "$(srcdir)/types.h" > "$(DESTDIR)$(pkgincludedir)/types.h" uninstall-hook: - @"$(RM)" -f "$(DESTDIR)$(pkgincludedir)/config.h" + @$(RM) "$(DESTDIR)$(pkgincludedir)/config.h" # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/qse/include/qse/awk/Awk.hpp b/qse/include/qse/awk/Awk.hpp index 40a4ac77..b5713dad 100644 --- a/qse/include/qse/awk/Awk.hpp +++ b/qse/include/qse/awk/Awk.hpp @@ -1,5 +1,5 @@ /* - * $Id: Awk.hpp 172 2009-06-01 13:33:01Z hyunghwan.chung $ + * $Id: Awk.hpp 185 2009-06-05 12:48:15Z hyunghwan.chung $ * Copyright 2006-2009 Chung, Hyung-Hwan. @@ -587,6 +587,7 @@ public: friend class Awk; friend class Argument; friend class Return; + friend class RIO; Run (Awk* awk); Run (Awk* awk, rtx_t* run);