Revision: 40609
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40609&view=rev
Author:   starseeker
Date:     2010-09-20 12:57:24 +0000 (Mon, 20 Sep 2010)

Log Message:
-----------
This should duplicate the AC_HEADER_STDC logic.

Modified Paths:
--------------
    brlcad/branches/cmake/CMakeLists.txt
    brlcad/branches/cmake/misc/CMake/BRLCAD_CheckFunctions.cmake
    brlcad/branches/cmake/src/other/libz/Makefile

Added Paths:
-----------
    brlcad/branches/cmake/misc/CMake/CheckPrototypeExists.cmake
    brlcad/branches/cmake/misc/CMake/test_srcs/ctypes_test.c

Modified: brlcad/branches/cmake/CMakeLists.txt
===================================================================
--- brlcad/branches/cmake/CMakeLists.txt        2010-09-19 15:11:22 UTC (rev 
40608)
+++ brlcad/branches/cmake/CMakeLists.txt        2010-09-20 12:57:24 UTC (rev 
40609)
@@ -726,8 +726,7 @@
 
 # Need to define CMake functionality that does the same thing
 # as these AC macros:
-# AC_HEADER_STDC (following line is insufficient)
-BRLCAD_INCLUDE_FILE(stddef.h STDC_HEADERS)
+CMAKE_HEADER_STDC()
 #
 # also:
 # AC_HEADER_DIRENT

Modified: brlcad/branches/cmake/misc/CMake/BRLCAD_CheckFunctions.cmake
===================================================================
--- brlcad/branches/cmake/misc/CMake/BRLCAD_CheckFunctions.cmake        
2010-09-19 15:11:22 UTC (rev 40608)
+++ brlcad/branches/cmake/misc/CMake/BRLCAD_CheckFunctions.cmake        
2010-09-20 12:57:24 UTC (rev 40609)
@@ -76,3 +76,19 @@
 ENDIF(HAVE_DIRNAME)
 ENDMACRO(CHECK_DIRNAME var)
 
+INCLUDE (CheckPrototypeExists)
+INCLUDE (CheckCFileRuns)
+# Based on AC_HEADER_STDC - using the source code for ctype
+# checking found in the generated configure file
+MACRO(CMAKE_HEADER_STDC)
+  CHECK_INCLUDE_FILE(stdlib.h HAVE_STDLIB_H)
+  CHECK_INCLUDE_FILE(stdarg.h HAVE_STDARG_H)
+  CHECK_INCLUDE_FILE(string.h HAVE_STRING_H)
+  CHECK_INCLUDE_FILE(float.h HAVE_FLOAT_H)
+  CHECK_PROTOTYPE_EXISTS(memchr string.h HAVE_STRING_H_MEMCHR)
+  CHECK_PROTOTYPE_EXISTS(free stdlib.h HAVE_STDLIB_H_FREE)
+  CHECK_C_FILE_RUNS(${CMAKE_SOURCE_DIR}/misc/CMake/test_srcs/ctypes_test.c 
WORKING_CTYPE_MACROS)
+  IF(HAVE_STDLIB_H AND HAVE_STDARG_H AND HAVE_STRING_H AND HAVE_FLOAT_H AND 
WORKING_CTYPE_MACROS)
+    FILE(APPEND ${CONFIG_H_FILE} "#define STDC_HEADERS 1\n")
+  ENDIF(HAVE_STDLIB_H AND HAVE_STDARG_H AND HAVE_STRING_H AND HAVE_FLOAT_H AND 
WORKING_CTYPE_MACROS)
+ENDMACRO(CMAKE_HEADER_STDC)

Added: brlcad/branches/cmake/misc/CMake/CheckPrototypeExists.cmake
===================================================================
--- brlcad/branches/cmake/misc/CMake/CheckPrototypeExists.cmake                 
        (rev 0)
+++ brlcad/branches/cmake/misc/CMake/CheckPrototypeExists.cmake 2010-09-20 
12:57:24 UTC (rev 40609)
@@ -0,0 +1,41 @@
+# - Check if the prototype for a function exists.
+# CHECK_PROTOTYPE_EXISTS (FUNCTION HEADER VARIABLE)
+#
+#  FUNCTION - the name of the function you are looking for
+#  HEADER - the header(s) where the prototype should be declared
+#  VARIABLE - variable to store the result
+#
+# The following variables may be set before calling this macro to
+# modify the way the check is run:
+#
+#  CMAKE_REQUIRED_FLAGS = string of compile command line flags
+#  CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
+#  CMAKE_REQUIRED_INCLUDES = list of include directories
+
+# Copyright (c) 2006, Alexander Neundorf, <[email protected]>
+#
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
+
+INCLUDE(CheckCXXSourceCompiles)
+
+MACRO (CHECK_PROTOTYPE_EXISTS _SYMBOL _HEADER _RESULT)
+   SET(_INCLUDE_FILES)
+   FOREACH (it ${_HEADER})
+      SET(_INCLUDE_FILES "${_INCLUDE_FILES}#include <${it}>\n")
+   ENDFOREACH (it)
+
+   SET(_CHECK_PROTO_EXISTS_SOURCE_CODE "
+${_INCLUDE_FILES}
+int main()
+{
+#ifndef ${_SYMBOL}
+   int i = sizeof(&${_SYMBOL});
+#endif
+  return 0;
+}
+")
+   CHECK_CXX_SOURCE_COMPILES("${_CHECK_PROTO_EXISTS_SOURCE_CODE}" ${_RESULT})
+ENDMACRO (CHECK_PROTOTYPE_EXISTS _SYMBOL _HEADER _RESULT)
+


Property changes on: brlcad/branches/cmake/misc/CMake/CheckPrototypeExists.cmake
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native

Added: brlcad/branches/cmake/misc/CMake/test_srcs/ctypes_test.c
===================================================================
--- brlcad/branches/cmake/misc/CMake/test_srcs/ctypes_test.c                    
        (rev 0)
+++ brlcad/branches/cmake/misc/CMake/test_srcs/ctypes_test.c    2010-09-20 
12:57:24 UTC (rev 40609)
@@ -0,0 +1,24 @@
+#include <ctype.h>
+#include <stdlib.h>
+#if ((' ' & 0x0FF) == 0x020)
+# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
+# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
+#else
+# define ISLOWER(c) \
+                   (('a' <= (c) && (c) <= 'i') \
+                     || ('j' <= (c) && (c) <= 'r') \
+                     || ('s' <= (c) && (c) <= 'z'))
+# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
+#endif
+
+#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
+int
+main ()
+{
+  int i;
+  for (i = 0; i < 256; i++)
+    if (XOR (islower (i), ISLOWER (i))
+        || toupper (i) != TOUPPER (i))
+      return 2;
+  return 0;
+}


Property changes on: brlcad/branches/cmake/misc/CMake/test_srcs/ctypes_test.c
___________________________________________________________________
Added: svn:mime-type
   + text/plain
Added: svn:eol-style
   + native

Modified: brlcad/branches/cmake/src/other/libz/Makefile
===================================================================
--- brlcad/branches/cmake/src/other/libz/Makefile       2010-09-19 15:11:22 UTC 
(rev 40608)
+++ brlcad/branches/cmake/src/other/libz/Makefile       2010-09-20 12:57:24 UTC 
(rev 40609)
@@ -1,5 +1,554 @@
-all:
-       -...@echo "Please use ./configure first.  Thank you."
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
 
-distclean:
-       make -f Makefile.in distclean
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+#=============================================================================
+# Special targets provided by cmake.
+
+# Disable implicit rules so canoncical targets will work.
+.SUFFIXES:
+
+# Remove some rules from gmake that .SUFFIXES does not remove.
+SUFFIXES =
+
+.SUFFIXES: .hpux_make_needs_suffix_list
+
+# Suppress display of executed commands.
+$(VERBOSE).SILENT:
+
+# A target that is always out of date.
+cmake_force:
+.PHONY : 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/cmake-gui
+
+# The top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/cyapp/brlcad/cmake
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/cyapp/brlcad/cmake
+
+#=============================================================================
+# 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..."
+       /usr/bin/cmake-gui -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : edit_cache
+
+# Special rule for the target edit_cache
+edit_cache/fast: edit_cache
+.PHONY : edit_cache/fast
+
+# Special rule for the target install
+install: preinstall
+       @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install 
the project..."
+       /usr/bin/cmake -P cmake_install.cmake
+.PHONY : install
+
+# Special rule for the target install
+install/fast: preinstall/fast
+       @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install 
the project..."
+       /usr/bin/cmake -P cmake_install.cmake
+.PHONY : install/fast
+
+# Special rule for the target install/local
+install/local: preinstall
+       @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan 
"Installing only the local directory..."
+       /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
+.PHONY : install/local
+
+# Special rule for the target install/local
+install/local/fast: install/local
+.PHONY : install/local/fast
+
+# Special rule for the target install/strip
+install/strip: preinstall
+       @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan 
"Installing the project stripped..."
+       /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake
+.PHONY : install/strip
+
+# Special rule for the target install/strip
+install/strip/fast: install/strip
+.PHONY : install/strip/fast
+
+# Special rule for the target list_install_components
+list_install_components:
+       @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan 
"Available install components are: \"Unspecified\""
+.PHONY : list_install_components
+
+# Special rule for the target list_install_components
+list_install_components/fast: list_install_components
+.PHONY : list_install_components/fast
+
+# Special rule for the target rebuild_cache
+rebuild_cache:
+       @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running 
CMake to regenerate build system..."
+       /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
+.PHONY : rebuild_cache
+
+# Special rule for the target rebuild_cache
+rebuild_cache/fast: rebuild_cache
+.PHONY : rebuild_cache/fast
+
+# The main all target
+all: cmake_check_build_system
+       cd /home/cyapp/brlcad/cmake && $(CMAKE_COMMAND) -E cmake_progress_start 
/home/cyapp/brlcad/cmake/CMakeFiles 
/home/cyapp/brlcad/cmake/src/other/libz/CMakeFiles/progress.marks
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/all
+       $(CMAKE_COMMAND) -E cmake_progress_start 
/home/cyapp/brlcad/cmake/CMakeFiles 0
+.PHONY : all
+
+# The main clean target
+clean:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/clean
+.PHONY : clean
+
+# The main clean target
+clean/fast: clean
+.PHONY : clean/fast
+
+# Prepare targets for installation.
+preinstall: all
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/preinstall
+.PHONY : preinstall
+
+# Prepare targets for installation.
+preinstall/fast:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/preinstall
+.PHONY : preinstall/fast
+
+# clear depends
+depend:
+       cd /home/cyapp/brlcad/cmake && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) 
-B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
+.PHONY : depend
+
+# Convenience name for target.
+src/other/libz/CMakeFiles/example.dir/rule:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/CMakeFiles/example.dir/rule
+.PHONY : src/other/libz/CMakeFiles/example.dir/rule
+
+# Convenience name for target.
+example: src/other/libz/CMakeFiles/example.dir/rule
+.PHONY : example
+
+# fast build rule for target.
+example/fast:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example.dir/build.make 
src/other/libz/CMakeFiles/example.dir/build
+.PHONY : example/fast
+
+# Convenience name for target.
+src/other/libz/CMakeFiles/example64.dir/rule:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/CMakeFiles/example64.dir/rule
+.PHONY : src/other/libz/CMakeFiles/example64.dir/rule
+
+# Convenience name for target.
+example64: src/other/libz/CMakeFiles/example64.dir/rule
+.PHONY : example64
+
+# fast build rule for target.
+example64/fast:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example64.dir/build.make 
src/other/libz/CMakeFiles/example64.dir/build
+.PHONY : example64/fast
+
+# Convenience name for target.
+src/other/libz/CMakeFiles/minigzip.dir/rule:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/CMakeFiles/minigzip.dir/rule
+.PHONY : src/other/libz/CMakeFiles/minigzip.dir/rule
+
+# Convenience name for target.
+minigzip: src/other/libz/CMakeFiles/minigzip.dir/rule
+.PHONY : minigzip
+
+# fast build rule for target.
+minigzip/fast:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip.dir/build.make 
src/other/libz/CMakeFiles/minigzip.dir/build
+.PHONY : minigzip/fast
+
+# Convenience name for target.
+src/other/libz/CMakeFiles/minigzip64.dir/rule:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/CMakeFiles/minigzip64.dir/rule
+.PHONY : src/other/libz/CMakeFiles/minigzip64.dir/rule
+
+# Convenience name for target.
+minigzip64: src/other/libz/CMakeFiles/minigzip64.dir/rule
+.PHONY : minigzip64
+
+# fast build rule for target.
+minigzip64/fast:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip64.dir/build.make 
src/other/libz/CMakeFiles/minigzip64.dir/build
+.PHONY : minigzip64/fast
+
+# Convenience name for target.
+src/other/libz/CMakeFiles/zlib.dir/rule:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f CMakeFiles/Makefile2 
src/other/libz/CMakeFiles/zlib.dir/rule
+.PHONY : src/other/libz/CMakeFiles/zlib.dir/rule
+
+# Convenience name for target.
+zlib: src/other/libz/CMakeFiles/zlib.dir/rule
+.PHONY : zlib
+
+# fast build rule for target.
+zlib/fast:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/build
+.PHONY : zlib/fast
+
+# target to build an object file
+adler32.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/adler32.o
+.PHONY : adler32.o
+
+# target to preprocess a source file
+adler32.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/adler32.i
+.PHONY : adler32.i
+
+# target to generate assembly for a file
+adler32.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/adler32.s
+.PHONY : adler32.s
+
+# target to build an object file
+compress.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/compress.o
+.PHONY : compress.o
+
+# target to preprocess a source file
+compress.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/compress.i
+.PHONY : compress.i
+
+# target to generate assembly for a file
+compress.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/compress.s
+.PHONY : compress.s
+
+# target to build an object file
+crc32.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/crc32.o
+.PHONY : crc32.o
+
+# target to preprocess a source file
+crc32.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/crc32.i
+.PHONY : crc32.i
+
+# target to generate assembly for a file
+crc32.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/crc32.s
+.PHONY : crc32.s
+
+# target to build an object file
+deflate.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/deflate.o
+.PHONY : deflate.o
+
+# target to preprocess a source file
+deflate.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/deflate.i
+.PHONY : deflate.i
+
+# target to generate assembly for a file
+deflate.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/deflate.s
+.PHONY : deflate.s
+
+# target to build an object file
+example.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example.dir/build.make 
src/other/libz/CMakeFiles/example.dir/example.o
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example64.dir/build.make 
src/other/libz/CMakeFiles/example64.dir/example.o
+.PHONY : example.o
+
+# target to preprocess a source file
+example.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example.dir/build.make 
src/other/libz/CMakeFiles/example.dir/example.i
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example64.dir/build.make 
src/other/libz/CMakeFiles/example64.dir/example.i
+.PHONY : example.i
+
+# target to generate assembly for a file
+example.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example.dir/build.make 
src/other/libz/CMakeFiles/example.dir/example.s
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/example64.dir/build.make 
src/other/libz/CMakeFiles/example64.dir/example.s
+.PHONY : example.s
+
+# target to build an object file
+gzclose.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzclose.o
+.PHONY : gzclose.o
+
+# target to preprocess a source file
+gzclose.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzclose.i
+.PHONY : gzclose.i
+
+# target to generate assembly for a file
+gzclose.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzclose.s
+.PHONY : gzclose.s
+
+# target to build an object file
+gzlib.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzlib.o
+.PHONY : gzlib.o
+
+# target to preprocess a source file
+gzlib.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzlib.i
+.PHONY : gzlib.i
+
+# target to generate assembly for a file
+gzlib.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzlib.s
+.PHONY : gzlib.s
+
+# target to build an object file
+gzread.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzread.o
+.PHONY : gzread.o
+
+# target to preprocess a source file
+gzread.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzread.i
+.PHONY : gzread.i
+
+# target to generate assembly for a file
+gzread.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzread.s
+.PHONY : gzread.s
+
+# target to build an object file
+gzwrite.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzwrite.o
+.PHONY : gzwrite.o
+
+# target to preprocess a source file
+gzwrite.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzwrite.i
+.PHONY : gzwrite.i
+
+# target to generate assembly for a file
+gzwrite.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/gzwrite.s
+.PHONY : gzwrite.s
+
+# target to build an object file
+infback.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/infback.o
+.PHONY : infback.o
+
+# target to preprocess a source file
+infback.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/infback.i
+.PHONY : infback.i
+
+# target to generate assembly for a file
+infback.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/infback.s
+.PHONY : infback.s
+
+# target to build an object file
+inffast.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inffast.o
+.PHONY : inffast.o
+
+# target to preprocess a source file
+inffast.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inffast.i
+.PHONY : inffast.i
+
+# target to generate assembly for a file
+inffast.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inffast.s
+.PHONY : inffast.s
+
+# target to build an object file
+inflate.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inflate.o
+.PHONY : inflate.o
+
+# target to preprocess a source file
+inflate.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inflate.i
+.PHONY : inflate.i
+
+# target to generate assembly for a file
+inflate.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inflate.s
+.PHONY : inflate.s
+
+# target to build an object file
+inftrees.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inftrees.o
+.PHONY : inftrees.o
+
+# target to preprocess a source file
+inftrees.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inftrees.i
+.PHONY : inftrees.i
+
+# target to generate assembly for a file
+inftrees.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/inftrees.s
+.PHONY : inftrees.s
+
+# target to build an object file
+minigzip.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip.dir/build.make 
src/other/libz/CMakeFiles/minigzip.dir/minigzip.o
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip64.dir/build.make 
src/other/libz/CMakeFiles/minigzip64.dir/minigzip.o
+.PHONY : minigzip.o
+
+# target to preprocess a source file
+minigzip.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip.dir/build.make 
src/other/libz/CMakeFiles/minigzip.dir/minigzip.i
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip64.dir/build.make 
src/other/libz/CMakeFiles/minigzip64.dir/minigzip.i
+.PHONY : minigzip.i
+
+# target to generate assembly for a file
+minigzip.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip.dir/build.make 
src/other/libz/CMakeFiles/minigzip.dir/minigzip.s
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/minigzip64.dir/build.make 
src/other/libz/CMakeFiles/minigzip64.dir/minigzip.s
+.PHONY : minigzip.s
+
+# target to build an object file
+trees.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/trees.o
+.PHONY : trees.o
+
+# target to preprocess a source file
+trees.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/trees.i
+.PHONY : trees.i
+
+# target to generate assembly for a file
+trees.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/trees.s
+.PHONY : trees.s
+
+# target to build an object file
+uncompr.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/uncompr.o
+.PHONY : uncompr.o
+
+# target to preprocess a source file
+uncompr.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/uncompr.i
+.PHONY : uncompr.i
+
+# target to generate assembly for a file
+uncompr.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/uncompr.s
+.PHONY : uncompr.s
+
+# target to build an object file
+zutil.o:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/zutil.o
+.PHONY : zutil.o
+
+# target to preprocess a source file
+zutil.i:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/zutil.i
+.PHONY : zutil.i
+
+# target to generate assembly for a file
+zutil.s:
+       cd /home/cyapp/brlcad/cmake && $(MAKE) -f 
src/other/libz/CMakeFiles/zlib.dir/build.make 
src/other/libz/CMakeFiles/zlib.dir/zutil.s
+.PHONY : zutil.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 "... example"
+       @echo "... example64"
+       @echo "... install"
+       @echo "... install/local"
+       @echo "... install/strip"
+       @echo "... list_install_components"
+       @echo "... minigzip"
+       @echo "... minigzip64"
+       @echo "... rebuild_cache"
+       @echo "... zlib"
+       @echo "... adler32.o"
+       @echo "... adler32.i"
+       @echo "... adler32.s"
+       @echo "... compress.o"
+       @echo "... compress.i"
+       @echo "... compress.s"
+       @echo "... crc32.o"
+       @echo "... crc32.i"
+       @echo "... crc32.s"
+       @echo "... deflate.o"
+       @echo "... deflate.i"
+       @echo "... deflate.s"
+       @echo "... example.o"
+       @echo "... example.i"
+       @echo "... example.s"
+       @echo "... gzclose.o"
+       @echo "... gzclose.i"
+       @echo "... gzclose.s"
+       @echo "... gzlib.o"
+       @echo "... gzlib.i"
+       @echo "... gzlib.s"
+       @echo "... gzread.o"
+       @echo "... gzread.i"
+       @echo "... gzread.s"
+       @echo "... gzwrite.o"
+       @echo "... gzwrite.i"
+       @echo "... gzwrite.s"
+       @echo "... infback.o"
+       @echo "... infback.i"
+       @echo "... infback.s"
+       @echo "... inffast.o"
+       @echo "... inffast.i"
+       @echo "... inffast.s"
+       @echo "... inflate.o"
+       @echo "... inflate.i"
+       @echo "... inflate.s"
+       @echo "... inftrees.o"
+       @echo "... inftrees.i"
+       @echo "... inftrees.s"
+       @echo "... minigzip.o"
+       @echo "... minigzip.i"
+       @echo "... minigzip.s"
+       @echo "... trees.o"
+       @echo "... trees.i"
+       @echo "... trees.s"
+       @echo "... uncompr.o"
+       @echo "... uncompr.i"
+       @echo "... uncompr.s"
+       @echo "... zutil.o"
+       @echo "... zutil.i"
+       @echo "... zutil.s"
+.PHONY : help
+
+
+
+#=============================================================================
+# 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 /home/cyapp/brlcad/cmake && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) 
-B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to