From 9e8bf61063b42d21543e7b77992b62b51a399edc Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Tue, 31 Jul 2007 00:56:58 +0200 Subject: [PATCH] Remove generated files. --- .gitignore | 8 + data/.gitignore | 3 + data/highlighting/.gitignore | 3 + data/pics/.gitignore | 3 + data/piece_icons/.gitignore | 3 + data/scripts/.gitignore | 3 + data/themes/.gitignore | 3 + lua/.gitignore | 1 + lua/Makefile | 718 +++++++++++++++++++++++++++++++++++-------- src/.gitignore | 10 + tests/.gitignore | 6 + tests/settings/.gitignore | 4 + 12 files changed, 639 insertions(+), 126 deletions(-) create mode 100644 data/.gitignore create mode 100644 data/highlighting/.gitignore create mode 100644 data/pics/.gitignore create mode 100644 data/piece_icons/.gitignore create mode 100644 data/scripts/.gitignore create mode 100644 data/themes/.gitignore create mode 100644 lua/.gitignore rewrite lua/Makefile (99%) create mode 100644 src/.gitignore create mode 100644 tests/.gitignore create mode 100644 tests/settings/.gitignore diff --git a/.gitignore b/.gitignore index 4a08356..3d06376 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,11 @@ *~ build patches +CMakeCache.txt +CMakeFiles +CMakeTmp +cmake_uninstall.cmake +Makefile +cmake_install.cmake +DartTestfile.txt +lib diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..b8d64db --- /dev/null +++ b/data/.gitignore @@ -0,0 +1,3 @@ +DartTestfile.txt +Makefile +cmake_install.cmake diff --git a/data/highlighting/.gitignore b/data/highlighting/.gitignore new file mode 100644 index 0000000..b8d64db --- /dev/null +++ b/data/highlighting/.gitignore @@ -0,0 +1,3 @@ +DartTestfile.txt +Makefile +cmake_install.cmake diff --git a/data/pics/.gitignore b/data/pics/.gitignore new file mode 100644 index 0000000..b8d64db --- /dev/null +++ b/data/pics/.gitignore @@ -0,0 +1,3 @@ +DartTestfile.txt +Makefile +cmake_install.cmake diff --git a/data/piece_icons/.gitignore b/data/piece_icons/.gitignore new file mode 100644 index 0000000..b8d64db --- /dev/null +++ b/data/piece_icons/.gitignore @@ -0,0 +1,3 @@ +DartTestfile.txt +Makefile +cmake_install.cmake diff --git a/data/scripts/.gitignore b/data/scripts/.gitignore new file mode 100644 index 0000000..b8d64db --- /dev/null +++ b/data/scripts/.gitignore @@ -0,0 +1,3 @@ +DartTestfile.txt +Makefile +cmake_install.cmake diff --git a/data/themes/.gitignore b/data/themes/.gitignore new file mode 100644 index 0000000..b8d64db --- /dev/null +++ b/data/themes/.gitignore @@ -0,0 +1,3 @@ +DartTestfile.txt +Makefile +cmake_install.cmake diff --git a/lua/.gitignore b/lua/.gitignore new file mode 100644 index 0000000..a1a869c --- /dev/null +++ b/lua/.gitignore @@ -0,0 +1 @@ +include diff --git a/lua/Makefile b/lua/Makefile dissimilarity index 99% index c5ec666..912bca7 100644 --- a/lua/Makefile +++ b/lua/Makefile @@ -1,126 +1,592 @@ -# makefile for installing Lua -# see INSTALL for installation instructions -# see src/Makefile and src/luaconf.h for further customization - -# == CHANGE THE SETTINGS BELOW TO SUIT YOUR ENVIRONMENT ======================= - -# Your platform. See PLATS for possible values. -PLAT= none - -# Where to install. The installation starts in the src directory, so take care -# if INSTALL_TOP is not an absolute path. (Man pages are installed from the -# doc directory.) You may want to make these paths consistent with LUA_ROOT, -# LUA_LDIR, and LUA_CDIR in luaconf.h (and also with etc/lua.pc). -# -INSTALL_TOP= /usr/local -INSTALL_BIN= $(INSTALL_TOP)/bin -INSTALL_INC= $(INSTALL_TOP)/include -INSTALL_LIB= $(INSTALL_TOP)/lib -INSTALL_MAN= $(INSTALL_TOP)/man/man1 -INSTALL_LMOD= $(INSTALL_TOP)/share/lua/$V -INSTALL_CMOD= $(INSTALL_TOP)/lib/lua/$V - -# How to install. You may prefer "install" instead of "cp" if you have it. -# To remove debug information from binaries, use "install -s" in INSTALL_EXEC. -# -INSTALL_EXEC= $(CP) -INSTALL_DATA= $(CP) -#INSTALL_EXEC= $(INSTALL) -m 0755 -#INSTALL_DATA= $(INSTALL) -m 0644 - -# Utilities. -CP= cp -FIND= find -INSTALL= install -MKDIR= mkdir -RANLIB= ranlib - -# == END OF USER SETTINGS. NO NEED TO CHANGE ANYTHING BELOW THIS LINE ========= - -# Convenience platforms targets. -PLATS= aix ansi bsd freebsd generic linux macosx mingw posix solaris - -# What to install. -TO_BIN= lua luac -TO_INC= lua.h luaconf.h lualib.h lauxlib.h ../etc/lua.hpp -TO_LIB= liblua.a -TO_MAN= lua.1 luac.1 - -# Lua version and release. -V= 5.1 -R= 5.1.2 - -all: $(PLAT) - -$(PLATS) clean: - cd src && $(MAKE) $@ - -test: dummy - src/lua test/hello.lua - -install: dummy - cd src && $(MKDIR) -p $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN) $(INSTALL_LMOD) $(INSTALL_CMOD) - cd src && $(INSTALL_EXEC) $(TO_BIN) $(INSTALL_BIN) - cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC) - cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB) - cd doc && $(INSTALL_DATA) $(TO_MAN) $(INSTALL_MAN) -# $(RANLIB) $(INSTALL_LIB)/$(TO_LIB) - -local: - $(MAKE) install INSTALL_TOP=.. INSTALL_EXEC="cp -p" INSTALL_DATA="cp -p" - -none: - @echo "Please do" - @echo " make PLATFORM" - @echo "where PLATFORM is one of these:" - @echo " $(PLATS)" - @echo "See INSTALL for complete instructions." - -# make may get confused with test/ and INSTALL in a case-insensitive OS -dummy: - -# echo config parameters -echo: - @echo "" - @echo "These are the parameters currently set in src/Makefile to build Lua $R:" - @echo "" - @cd src && $(MAKE) -s echo - @echo "" - @echo "These are the parameters currently set in Makefile to install Lua $R:" - @echo "" - @echo "PLAT = $(PLAT)" - @echo "INSTALL_TOP = $(INSTALL_TOP)" - @echo "INSTALL_BIN = $(INSTALL_BIN)" - @echo "INSTALL_INC = $(INSTALL_INC)" - @echo "INSTALL_LIB = $(INSTALL_LIB)" - @echo "INSTALL_MAN = $(INSTALL_MAN)" - @echo "INSTALL_LMOD = $(INSTALL_LMOD)" - @echo "INSTALL_CMOD = $(INSTALL_CMOD)" - @echo "INSTALL_EXEC = $(INSTALL_EXEC)" - @echo "INSTALL_DATA = $(INSTALL_DATA)" - @echo "" - @echo "See also src/luaconf.h ." - @echo "" - -# echo private config parameters -pecho: - @echo "V = $(V)" - @echo "R = $(R)" - @echo "TO_BIN = $(TO_BIN)" - @echo "TO_INC = $(TO_INC)" - @echo "TO_LIB = $(TO_LIB)" - @echo "TO_MAN = $(TO_MAN)" - -# echo config parameters as Lua code -# uncomment the last sed expression if you want nil instead of empty strings -lecho: - @echo "-- installation parameters for Lua $R" - @echo "VERSION = '$V'" - @echo "RELEASE = '$R'" - @$(MAKE) echo | grep = | sed -e 's/= /= "/' -e 's/$$/"/' #-e 's/""/nil/' - @echo "-- EOF" - -# list targets that do not create files (but not all makes understand .PHONY) -.PHONY: all $(PLATS) clean test install local none dummy echo pecho lecho - -# (end of Makefile) +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.4 + +# Default target executed when no arguments are given to make. +default_target: all + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canoncical targets will work. +.SUFFIXES: + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# The program to use to edit the cache. +CMAKE_EDIT_COMMAND = /usr/bin/ccmake + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /export/work/yann/games/tagua/tagua + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /export/work/yann/games/tagua/tagua + +# Include the progress variables for this target. +include CMakeFiles/progress.make + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..." + cd /export/work/yann/games/tagua/tagua/lua && /usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + cd /export/work/yann/games/tagua/tagua/lua && /usr/bin/cmake -P cmake_install.cmake + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + cd /export/work/yann/games/tagua/tagua/lua && /usr/bin/cmake -P cmake_install.cmake + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + cd /export/work/yann/games/tagua/tagua/lua && /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake + +# Special rule for the target install/local +install/local/fast: install/local + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Only default component available" + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + cd /export/work/yann/games/tagua/tagua/lua && /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +# Special rule for the target test +test: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..." + cd /export/work/yann/games/tagua/tagua/lua && /usr/bin/ctest --force-new-ctest-process $(ARGS) + +# Special rule for the target test +test/fast: test + +# The main all target +all: cmake_check_build_system + cd /export/work/yann/games/tagua/tagua && $(CMAKE_COMMAND) -E cmake_progress_start /export/work/yann/games/tagua/tagua/CMakeFiles $(CMAKE_ALL_PROGRESS) + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f CMakeFiles/Makefile2 lua/all + $(CMAKE_COMMAND) -E cmake_progress_start /export/work/yann/games/tagua/tagua/CMakeFiles 0 + +# The main clean target +clean: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f CMakeFiles/Makefile2 lua/clean + +# The main clean target +clean/fast: clean + +# Prepare targets for installation. +preinstall: all + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f CMakeFiles/Makefile2 lua/preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f CMakeFiles/Makefile2 lua/preinstall + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 + +# Convenience name for target. +lua/CMakeFiles/lua.dir/rule: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f CMakeFiles/Makefile2 lua/CMakeFiles/lua.dir/rule + +# Convenience name for target. +lua: lua/CMakeFiles/lua.dir/rule + +# fast build rule for target. +lua/fast: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/build + +# target to build an object file +src/lapi.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lapi.o + +# target to preprocess a source file +src/lapi.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lapi.i + +# target to generate assembly for a file +src/lapi.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lapi.s + +# target to build an object file +src/lauxlib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lauxlib.o + +# target to preprocess a source file +src/lauxlib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lauxlib.i + +# target to generate assembly for a file +src/lauxlib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lauxlib.s + +# target to build an object file +src/lbaselib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lbaselib.o + +# target to preprocess a source file +src/lbaselib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lbaselib.i + +# target to generate assembly for a file +src/lbaselib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lbaselib.s + +# target to build an object file +src/lcode.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lcode.o + +# target to preprocess a source file +src/lcode.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lcode.i + +# target to generate assembly for a file +src/lcode.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lcode.s + +# target to build an object file +src/ldblib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldblib.o + +# target to preprocess a source file +src/ldblib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldblib.i + +# target to generate assembly for a file +src/ldblib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldblib.s + +# target to build an object file +src/ldebug.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldebug.o + +# target to preprocess a source file +src/ldebug.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldebug.i + +# target to generate assembly for a file +src/ldebug.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldebug.s + +# target to build an object file +src/ldo.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldo.o + +# target to preprocess a source file +src/ldo.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldo.i + +# target to generate assembly for a file +src/ldo.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldo.s + +# target to build an object file +src/ldump.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldump.o + +# target to preprocess a source file +src/ldump.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldump.i + +# target to generate assembly for a file +src/ldump.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ldump.s + +# target to build an object file +src/lfunc.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lfunc.o + +# target to preprocess a source file +src/lfunc.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lfunc.i + +# target to generate assembly for a file +src/lfunc.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lfunc.s + +# target to build an object file +src/lgc.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lgc.o + +# target to preprocess a source file +src/lgc.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lgc.i + +# target to generate assembly for a file +src/lgc.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lgc.s + +# target to build an object file +src/linit.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/linit.o + +# target to preprocess a source file +src/linit.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/linit.i + +# target to generate assembly for a file +src/linit.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/linit.s + +# target to build an object file +src/liolib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/liolib.o + +# target to preprocess a source file +src/liolib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/liolib.i + +# target to generate assembly for a file +src/liolib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/liolib.s + +# target to build an object file +src/llex.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/llex.o + +# target to preprocess a source file +src/llex.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/llex.i + +# target to generate assembly for a file +src/llex.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/llex.s + +# target to build an object file +src/lmathlib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lmathlib.o + +# target to preprocess a source file +src/lmathlib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lmathlib.i + +# target to generate assembly for a file +src/lmathlib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lmathlib.s + +# target to build an object file +src/lmem.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lmem.o + +# target to preprocess a source file +src/lmem.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lmem.i + +# target to generate assembly for a file +src/lmem.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lmem.s + +# target to build an object file +src/loadlib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/loadlib.o + +# target to preprocess a source file +src/loadlib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/loadlib.i + +# target to generate assembly for a file +src/loadlib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/loadlib.s + +# target to build an object file +src/lobject.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lobject.o + +# target to preprocess a source file +src/lobject.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lobject.i + +# target to generate assembly for a file +src/lobject.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lobject.s + +# target to build an object file +src/lopcodes.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lopcodes.o + +# target to preprocess a source file +src/lopcodes.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lopcodes.i + +# target to generate assembly for a file +src/lopcodes.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lopcodes.s + +# target to build an object file +src/loslib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/loslib.o + +# target to preprocess a source file +src/loslib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/loslib.i + +# target to generate assembly for a file +src/loslib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/loslib.s + +# target to build an object file +src/lparser.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lparser.o + +# target to preprocess a source file +src/lparser.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lparser.i + +# target to generate assembly for a file +src/lparser.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lparser.s + +# target to build an object file +src/lstate.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstate.o + +# target to preprocess a source file +src/lstate.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstate.i + +# target to generate assembly for a file +src/lstate.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstate.s + +# target to build an object file +src/lstring.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstring.o + +# target to preprocess a source file +src/lstring.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstring.i + +# target to generate assembly for a file +src/lstring.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstring.s + +# target to build an object file +src/lstrlib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstrlib.o + +# target to preprocess a source file +src/lstrlib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstrlib.i + +# target to generate assembly for a file +src/lstrlib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lstrlib.s + +# target to build an object file +src/ltable.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltable.o + +# target to preprocess a source file +src/ltable.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltable.i + +# target to generate assembly for a file +src/ltable.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltable.s + +# target to build an object file +src/ltablib.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltablib.o + +# target to preprocess a source file +src/ltablib.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltablib.i + +# target to generate assembly for a file +src/ltablib.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltablib.s + +# target to build an object file +src/ltm.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltm.o + +# target to preprocess a source file +src/ltm.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltm.i + +# target to generate assembly for a file +src/ltm.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/ltm.s + +# target to build an object file +src/lundump.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lundump.o + +# target to preprocess a source file +src/lundump.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lundump.i + +# target to generate assembly for a file +src/lundump.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lundump.s + +# target to build an object file +src/lvm.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lvm.o + +# target to preprocess a source file +src/lvm.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lvm.i + +# target to generate assembly for a file +src/lvm.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lvm.s + +# target to build an object file +src/lzio.o: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lzio.o + +# target to preprocess a source file +src/lzio.i: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lzio.i + +# target to generate assembly for a file +src/lzio.s: + cd /export/work/yann/games/tagua/tagua && $(MAKE) -f lua/CMakeFiles/lua.dir/build.make lua/CMakeFiles/lua.dir/src/lzio.s + +# Help Target +help:: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... list_install_components" + @echo "... lua" + @echo "... rebuild_cache" + @echo "... test" + @echo "... src/lapi.o" + @echo "... src/lapi.i" + @echo "... src/lapi.s" + @echo "... src/lauxlib.o" + @echo "... src/lauxlib.i" + @echo "... src/lauxlib.s" + @echo "... src/lbaselib.o" + @echo "... src/lbaselib.i" + @echo "... src/lbaselib.s" + @echo "... src/lcode.o" + @echo "... src/lcode.i" + @echo "... src/lcode.s" + @echo "... src/ldblib.o" + @echo "... src/ldblib.i" + @echo "... src/ldblib.s" + @echo "... src/ldebug.o" + @echo "... src/ldebug.i" + @echo "... src/ldebug.s" + @echo "... src/ldo.o" + @echo "... src/ldo.i" + @echo "... src/ldo.s" + @echo "... src/ldump.o" + @echo "... src/ldump.i" + @echo "... src/ldump.s" + @echo "... src/lfunc.o" + @echo "... src/lfunc.i" + @echo "... src/lfunc.s" + @echo "... src/lgc.o" + @echo "... src/lgc.i" + @echo "... src/lgc.s" + @echo "... src/linit.o" + @echo "... src/linit.i" + @echo "... src/linit.s" + @echo "... src/liolib.o" + @echo "... src/liolib.i" + @echo "... src/liolib.s" + @echo "... src/llex.o" + @echo "... src/llex.i" + @echo "... src/llex.s" + @echo "... src/lmathlib.o" + @echo "... src/lmathlib.i" + @echo "... src/lmathlib.s" + @echo "... src/lmem.o" + @echo "... src/lmem.i" + @echo "... src/lmem.s" + @echo "... src/loadlib.o" + @echo "... src/loadlib.i" + @echo "... src/loadlib.s" + @echo "... src/lobject.o" + @echo "... src/lobject.i" + @echo "... src/lobject.s" + @echo "... src/lopcodes.o" + @echo "... src/lopcodes.i" + @echo "... src/lopcodes.s" + @echo "... src/loslib.o" + @echo "... src/loslib.i" + @echo "... src/loslib.s" + @echo "... src/lparser.o" + @echo "... src/lparser.i" + @echo "... src/lparser.s" + @echo "... src/lstate.o" + @echo "... src/lstate.i" + @echo "... src/lstate.s" + @echo "... src/lstring.o" + @echo "... src/lstring.i" + @echo "... src/lstring.s" + @echo "... src/lstrlib.o" + @echo "... src/lstrlib.i" + @echo "... src/lstrlib.s" + @echo "... src/ltable.o" + @echo "... src/ltable.i" + @echo "... src/ltable.s" + @echo "... src/ltablib.o" + @echo "... src/ltablib.i" + @echo "... src/ltablib.s" + @echo "... src/ltm.o" + @echo "... src/ltm.i" + @echo "... src/ltm.s" + @echo "... src/lundump.o" + @echo "... src/lundump.i" + @echo "... src/lundump.s" + @echo "... src/lvm.o" + @echo "... src/lvm.i" + @echo "... src/lvm.s" + @echo "... src/lzio.o" + @echo "... src/lzio.i" + @echo "... src/lzio.s" + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /export/work/yann/games/tagua/tagua && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 + diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 0000000..06c75f7 --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,10 @@ +tagua_automoc.cpp.files +DartTestfile.txt +Makefile +cmake_install.cmake +taguaprivate_automoc.cpp.files +moc_*.cpp +ui_*.h +*_automoc.cpp +tagua +tagua.shell diff --git a/tests/.gitignore b/tests/.gitignore new file mode 100644 index 0000000..f449cc7 --- /dev/null +++ b/tests/.gitignore @@ -0,0 +1,6 @@ +DartTestfile.txt +DartTestfile.txt +Makefile +Makefile +cmake_install.cmake +cmake_install.cmake diff --git a/tests/settings/.gitignore b/tests/settings/.gitignore new file mode 100644 index 0000000..27b0224 --- /dev/null +++ b/tests/settings/.gitignore @@ -0,0 +1,4 @@ +settings_test_automoc.cpp.files +DartTestfile.txt +Makefile +cmake_install.cmake -- 2.11.4.GIT