From 52be1ef0d126f09ba943c7afcf367e7d9347f2fd Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 8 Nov 2012 22:58:28 +0000 Subject: tabconv: it's all spaces now. --- share/autoinclude/general-rules.bld | 166 ++++++++++++------------- share/include/qt4.bld | 236 ++++++++++++++++++------------------ 2 files changed, 201 insertions(+), 201 deletions(-) (limited to 'share') diff --git a/share/autoinclude/general-rules.bld b/share/autoinclude/general-rules.bld index 6c0df30..0e4f0b4 100644 --- a/share/autoinclude/general-rules.bld +++ b/share/autoinclude/general-rules.bld @@ -6,151 +6,151 @@ if CXX == null then { - CXX = "g++"; + CXX = "g++"; } if AR == null then { - AR = "ar"; + AR = "ar"; } if CC == null then { - CC = "cc"; + CC = "cc"; } if BISON == null then { - BISON = "bison"; + BISON = "bison"; } if FLEX == null then { - FLEX = "flex"; + FLEX = "flex"; } function cppToObj() { - if OBJ_DIR == null then - { - return INPUT.regex("\\.cpp$", ".o"); - } - else - { - return OBJ_DIR + "/" + INPUT.fileName().regex("\\.cpp$", ".o"); - } + if OBJ_DIR == null then + { + return INPUT.regex("\\.cpp$", ".o"); + } + else + { + return OBJ_DIR + "/" + INPUT.fileName().regex("\\.cpp$", ".o"); + } } function cToObj() { - if OBJ_DIR == null then - { - return INPUT.regex("\\.c$", ".o"); - } - else - { - return OBJ_DIR + "/" + INPUT.fileName().regex("\\.c$", ".o"); - } + if OBJ_DIR == null then + { + return INPUT.regex("\\.c$", ".o"); + } + else + { + return OBJ_DIR + "/" + INPUT.fileName().regex("\\.c$", ".o"); + } } rule "exe" { - input "*.o"; - profile "build" - { - INPUT = [INPUT].unique().matches("*.o"); - execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); - } + input "*.o"; + profile "build" + { + INPUT = [INPUT].unique().matches("*.o"); + execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); + } } rule "so" { - input "*.o"; - profile "build" - { - INPUT = [INPUT].unique().matches("*.o"); - execute("${CXX} -shared -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); - } + input "*.o"; + profile "build" + { + INPUT = [INPUT].unique().matches("*.o"); + execute("${CXX} -shared -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); + } } rule "lib" { - input "*.o"; - profile "build" - { - INPUT = [INPUT].unique().matches("*.o"); - execute("${AR} cr ${OUTPUT} ${INPUT}"); - } + input "*.o"; + profile "build" + { + INPUT = [INPUT].unique().matches("*.o"); + execute("${AR} cr ${OUTPUT} ${INPUT}"); + } } rule "cpp" { - input "*.cpp"; - output INPUT.cppToObj(); - requires getMakeDeps("${CXX} ${CXXFLAGS} -M -MG ${INPUT}"); - profile "build" - { - execute("${CXX} ${CXXFLAGS} -c -o ${OUTPUT} ${INPUT}", "g++"); - } + input "*.cpp"; + output INPUT.cppToObj(); + requires getMakeDeps("${CXX} ${CXXFLAGS} -M -MG ${INPUT}"); + profile "build" + { + execute("${CXX} ${CXXFLAGS} -c -o ${OUTPUT} ${INPUT}", "g++"); + } } // Heh, we're not going to use this one. rule "c" { - input "*.c"; - output INPUT.cToObj(); - requires getMakeDeps("${CC} ${CFLAGS} -M -MG ${INPUT}"); - profile "build" - { - execute("${CC} ${CFLAGS} -c -o ${OUTPUT} ${INPUT}"); - } + input "*.c"; + output INPUT.cToObj(); + requires getMakeDeps("${CC} ${CFLAGS} -M -MG ${INPUT}"); + profile "build" + { + execute("${CC} ${CFLAGS} -c -o ${OUTPUT} ${INPUT}"); + } } rule "bison" { - input "*.y"; - output [INPUT.regex("\\.y$", ".tab.c"), INPUT.regex("\\.y$", ".tab.h")]; - profile "build" - { - BASE = INPUT.regex("\\.y", ""); - execute("${BISON} -b${BASE} ${BISONFLAGS} ${INPUT}"); - // if you add a -v bison will produce a .output file - } + input "*.y"; + output [INPUT.regex("\\.y$", ".tab.c"), INPUT.regex("\\.y$", ".tab.h")]; + profile "build" + { + BASE = INPUT.regex("\\.y", ""); + execute("${BISON} -b${BASE} ${BISONFLAGS} ${INPUT}"); + // if you add a -v bison will produce a .output file + } } rule "flex" { - input "*.l"; - output INPUT.regex("\\.l$", ".yy.c"); - output INPUT.regex("\\.l$", ".yy.h"); - profile "build" - { - execute("${FLEX} ${FLEXFLAGS} ${INPUT}"); - } + input "*.l"; + output INPUT.regex("\\.l$", ".yy.c"); + output INPUT.regex("\\.l$", ".yy.h"); + profile "build" + { + execute("${FLEX} ${FLEXFLAGS} ${INPUT}"); + } } rule "jar" { - input "*.class"; - profile "build" - { - if exists(OUTPUT) then - { - unlink(OUTPUT); - } - execute("jar cf ${OUTPUT} ${INPUT}"); - } + input "*.class"; + profile "build" + { + if exists(OUTPUT) then + { + unlink(OUTPUT); + } + execute("jar cf ${OUTPUT} ${INPUT}"); + } } rule "class" { - input "*.java"; - output INPUT.regex("\\.java", ".class"); - profile "build" - { - execute("javac -cp . ${INPUT}"); - } + input "*.java"; + output INPUT.regex("\\.java", ".class"); + profile "build" + { + execute("javac -cp . ${INPUT}"); + } } diff --git a/share/include/qt4.bld b/share/include/qt4.bld index ebf26d7..e1cfdd2 100644 --- a/share/include/qt4.bld +++ b/share/include/qt4.bld @@ -1,165 +1,165 @@ function qt_getCXXFLAGS() { - if QTDIR == null then - { - error "QTDIR is not set, cannot find QT tools."; - } + if QTDIR == null then + { + error "QTDIR is not set, cannot find QT tools."; + } - ret = "-D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LI " - "-DQT_SHARED -I${QTDIR}/mkspecs/linux-g++ " - "$(PKG_CONFIG_PATH=PKG_CONFIG_PATH:${QTDIR}/lib/pkgconfig " - "pkg-config --cflags QtCore QtGui ice glu x11 xext libpng freetype2 " - "gobject-2.0 sm xrender fontconfig gthread-2.0 glib-2.0)"; - if UI_DIR != null then - { - ret += "-I${UI_DIR}"; - } - if RCC_DIR != null then - { - ret += "-I${RCC_DIR}"; - } - if MOC_DIR != null then - { - ret += "-I${MOC_DIR}"; - } - return ret; + ret = "-D_REENTRANT -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LI " + "-DQT_SHARED -I${QTDIR}/mkspecs/linux-g++ " + "$(PKG_CONFIG_PATH=PKG_CONFIG_PATH:${QTDIR}/lib/pkgconfig " + "pkg-config --cflags QtCore QtGui ice glu x11 xext libpng freetype2 " + "gobject-2.0 sm xrender fontconfig gthread-2.0 glib-2.0)"; + if UI_DIR != null then + { + ret += "-I${UI_DIR}"; + } + if RCC_DIR != null then + { + ret += "-I${RCC_DIR}"; + } + if MOC_DIR != null then + { + ret += "-I${MOC_DIR}"; + } + return ret; } function qt_getLDFLAGS() { - if QTDIR == null then - { - error "QTDIR is not set, cannot find QT tools."; - } + if QTDIR == null then + { + error "QTDIR is not set, cannot find QT tools."; + } - return "-Wl,-rpath,${QTDIR}/lib $(PKG_CONFIG_PATH=" - "PKG_CONFIG_PATH:${QTDIR}/lib/pkgconfig " - "pkg-config --libs QtCore QtGui ice glu x11 xext libpng freetype2 " - "gobject-2.0 sm xrender fontconfig gthread-2.0 glib-2.0) -lz " - "-lm -ldl"; + return "-Wl,-rpath,${QTDIR}/lib $(PKG_CONFIG_PATH=" + "PKG_CONFIG_PATH:${QTDIR}/lib/pkgconfig " + "pkg-config --libs QtCore QtGui ice glu x11 xext libpng freetype2 " + "gobject-2.0 sm xrender fontconfig gthread-2.0 glib-2.0) -lz " + "-lm -ldl"; } function qt_getToolPath( TOOL, DEFAULT ) { - if QTDIR == null then - { - error "QTDIR is not set, cannot find QT tools."; - } - if TOOL == null then - { - return "${QTDIR}/bin/${DEFAULT}"; - } - return TOOL; + if QTDIR == null then + { + error "QTDIR is not set, cannot find QT tools."; + } + if TOOL == null then + { + return "${QTDIR}/bin/${DEFAULT}"; + } + return TOOL; } function qt_uiToH() { - if "${UI_DIR}" == "" then - { - DIR = INPUT.dirName(); - } - else - { - DIR = UI_DIR; - } - FILE = INPUT.fileName(); - OUTFILE = FILE.replace(".ui",".h"); - return "${DIR}/ui_${OUTFILE}"; + if "${UI_DIR}" == "" then + { + DIR = INPUT.dirName(); + } + else + { + DIR = UI_DIR; + } + FILE = INPUT.fileName(); + OUTFILE = FILE.replace(".ui",".h"); + return "${DIR}/ui_${OUTFILE}"; } rule "qt_ui" { - display "ui"; - input "*.ui"; - output INPUT.qt_uiToH(); - tag "headers"; - profile "build" - { - UIC = qt_getToolPath( UIC, "uic" ); - execute("${UIC} -o ${OUTPUT} ${INPUT}"); - } + display "ui"; + input "*.ui"; + output INPUT.qt_uiToH(); + tag "headers"; + profile "build" + { + UIC = qt_getToolPath( UIC, "uic" ); + execute("${UIC} -o ${OUTPUT} ${INPUT}"); + } } function qt_qrcToCpp() { - if "${RCC_DIR}" == "" then - { - DIR = INPUT.dirName(); - } - else - { - DIR = RCC_DIR; - } - FILE = INPUT.fileName(); - OUTFILE = FILE.replace(".qrc",".cpp"); - return "${DIR}/qrc_${OUTFILE}"; + if "${RCC_DIR}" == "" then + { + DIR = INPUT.dirName(); + } + else + { + DIR = RCC_DIR; + } + FILE = INPUT.fileName(); + OUTFILE = FILE.replace(".qrc",".cpp"); + return "${DIR}/qrc_${OUTFILE}"; } rule "qt_rcc" { - display "rcc"; - input "*.qrc"; - output INPUT.qt_qrcToCpp(); - profile "build" - { - RCC = qt_getToolPath( RCC, "rcc" ); - NAME = INPUT.fileName().replace(".qrc",""); - execute("${RCC} -name ${NAME} -o ${OUTPUT} ${INPUT}"); - } + display "rcc"; + input "*.qrc"; + output INPUT.qt_qrcToCpp(); + profile "build" + { + RCC = qt_getToolPath( RCC, "rcc" ); + NAME = INPUT.fileName().replace(".qrc",""); + execute("${RCC} -name ${NAME} -o ${OUTPUT} ${INPUT}"); + } } function qt_isMocable() { - if INPUT.matches("*.h") then - { - if exists( INPUT ) then - { - if "$(grep Q_OBJECT ${INPUT})" != "" then - { - return true; - } - } - } - return false; + if INPUT.matches("*.h") then + { + if exists( INPUT ) then + { + if "$(grep Q_OBJECT ${INPUT})" != "" then + { + return true; + } + } + } + return false; } function qt_hToMocCpp() { - if "${MOC_DIR}" == "" then - { - DIR = INPUT.dirName(); - } - else - { - DIR = MOC_DIR; - } - FILE = INPUT.fileName(); - OUTFILE = FILE.replace(".h",".cpp"); - return "${DIR}/moc_${OUTFILE}"; + if "${MOC_DIR}" == "" then + { + DIR = INPUT.dirName(); + } + else + { + DIR = MOC_DIR; + } + FILE = INPUT.fileName(); + OUTFILE = FILE.replace(".h",".cpp"); + return "${DIR}/moc_${OUTFILE}"; } rule "qt_moc" { - display "moc"; - input qt_isMocable(); - output INPUT.qt_hToMocCpp(); - profile "build" - { - MOC = qt_getToolPath( MOC, "moc" ); - execute("${MOC} -o${OUTPUT} ${INPUT}"); - } + display "moc"; + input qt_isMocable(); + output INPUT.qt_hToMocCpp(); + profile "build" + { + MOC = qt_getToolPath( MOC, "moc" ); + execute("${MOC} -o${OUTPUT} ${INPUT}"); + } } rule "exe" { - input regex(".*\\.(h|o)"); - profile "build" - { - INPUT = [INPUT].matches("*.o"); -// execute("echo ${INPUT}"); -// execute("echo ${MYIN}"); - execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); - } + input regex(".*\\.(h|o)"); + profile "build" + { + INPUT = [INPUT].matches("*.o"); +// execute("echo ${INPUT}"); +// execute("echo ${MYIN}"); + execute("${CXX} -o ${OUTPUT} ${INPUT} ${LDFLAGS}"); + } } -- cgit v1.2.3