summaryrefslogtreecommitdiffstats
path: root/customdhcpcd
diff options
context:
space:
mode:
Diffstat (limited to 'customdhcpcd')
-rw-r--r--customdhcpcd/src/CMakeLists.txt13
-rw-r--r--customdhcpcd/src/Makefile34
-rw-r--r--customdhcpcd/src/build/CMakeCache.txt282
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CMakeCCompiler.cmake44
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CMakeCXXCompiler.cmake45
-rwxr-xr-xcustomdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_C.binbin0 -> 7165 bytes
-rwxr-xr-xcustomdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_CXX.binbin0 -> 7246 bytes
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CMakeDirectoryInformation.cmake21
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CMakeOutput.log240
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CMakeSystem.cmake15
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c220
-rwxr-xr-xcustomdhcpcd/src/build/CMakeFiles/CompilerIdC/a.outbin0 -> 7204 bytes
-rw-r--r--customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp206
-rwxr-xr-xcustomdhcpcd/src/build/CMakeFiles/CompilerIdCXX/a.outbin0 -> 7276 bytes
-rw-r--r--customdhcpcd/src/build/CMakeFiles/Makefile.cmake44
-rw-r--r--customdhcpcd/src/build/CMakeFiles/Makefile2131
-rw-r--r--customdhcpcd/src/build/CMakeFiles/TargetDirectories.txt2
-rw-r--r--customdhcpcd/src/build/CMakeFiles/cmake.check_cache1
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/C.includecache154
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/DependInfo.cmake14
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/build.make101
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/cmake_clean.cmake10
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.internal16
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.make16
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/flags.make8
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/link.txt1
-rw-r--r--customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/progress.make2
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/C.includecache700
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake29
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/build.make533
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean.cmake26
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean_target.cmake3
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.internal143
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.make143
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/flags.make8
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/link.txt2
-rw-r--r--customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/progress.make18
-rw-r--r--customdhcpcd/src/build/CMakeFiles/progress.marks1
-rw-r--r--customdhcpcd/src/build/Makefile609
-rw-r--r--customdhcpcd/src/build/cmake_install.cmake44
-rwxr-xr-xcustomdhcpcd/src/build/customdhcpcdbin0 -> 85951 bytes
-rw-r--r--customdhcpcd/src/build/liblibcustomdhcpcd.abin0 -> 106910 bytes
-rw-r--r--customdhcpcd/src/mk/cc.mk23
-rw-r--r--customdhcpcd/src/mk/depend.mk11
-rw-r--r--customdhcpcd/src/mk/dist.mk11
-rw-r--r--customdhcpcd/src/mk/man.mk14
-rw-r--r--customdhcpcd/src/mk/os.mk77
-rw-r--r--customdhcpcd/src/mk/prog.mk34
48 files changed, 3845 insertions, 204 deletions
diff --git a/customdhcpcd/src/CMakeLists.txt b/customdhcpcd/src/CMakeLists.txt
new file mode 100644
index 0000000..16ad4af
--- /dev/null
+++ b/customdhcpcd/src/CMakeLists.txt
@@ -0,0 +1,13 @@
+cmake_minimum_required(VERSION 2.8)
+
+project(customdhcpdcd)
+
+set(CMAKE_C_FLAGS "-lrt")
+
+file(GLOB_RECURSE CUSTOMDHCPCD_SOURCES *.c)
+file(GLOB_RECURSE CUSTOMDHCPCD_HEADERS *.h)
+
+add_library(libcustomdhcpcd ${CUSTOMDHCPCD_SOURCES} ${CUSTOMDHCPCD_HEADERS})
+
+add_executable(customdhcpcd dhcpcd.c)
+target_link_libraries(customdhcpcd libcustomdhcpcd )
diff --git a/customdhcpcd/src/Makefile b/customdhcpcd/src/Makefile
deleted file mode 100644
index f3cdb5d..0000000
--- a/customdhcpcd/src/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Makefile based on BSD's pmake.
-# Our mk stubs also work with GNU make.
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-PROG= customdhcpcd
-SRCS= arp.c client.c common.c configure.c dhcp.c dhcpcd.c duid.c \
- info.c interface.c ipv4ll.c logger.c signal.c socket.c logwriter.c
-MAN=
-
-VERSION= 3.2.3
-CLEANFILES= version.h
-
-BINDIR= ${PREFIX}/sbin
-
-.SUFFIXES: .in
-
-MK= mk
-include ${MK}/os.mk
-include ${MK}/cc.mk
-include ${MK}/prog.mk
-
-# os.mk should define this, but heh
-INFOD?= /var/db
-
-LDADD+= ${LIBRESOLV} ${LIBRT}
-CFLAGS+= -g -Wall -DINFODIR=\"${INFOD}\" ${FORK} ${RC}
-
-# As version.h is generated by us, hardcode the depend correctly.
-${SRCS}: version.h
-version.h:
- echo "#define VERSION \"${VERSION}\""> version.h
-
-.in:
- sed 's:@PREFIX@:${PREFIX}:g; s:@INFODIR@:${INFOD}:g' $< > $@
diff --git a/customdhcpcd/src/build/CMakeCache.txt b/customdhcpcd/src/build/CMakeCache.txt
new file mode 100644
index 0000000..0d2d2c6
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeCache.txt
@@ -0,0 +1,282 @@
+# This is the CMakeCache file.
+# For build in directory: /home/niklas/fbgui/customdhcpcd/src/build
+# It was generated by CMake: /usr/bin/cmake
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUI's for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Path to a program.
+CMAKE_AR:FILEPATH=/usr/bin/ar
+
+//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
+// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
+CMAKE_BUILD_TYPE:STRING=
+
+//Enable/Disable color output during build.
+CMAKE_COLOR_MAKEFILE:BOOL=ON
+
+//CXX compiler.
+CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++
+
+//Flags used by the compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=
+
+//Flags used by the compiler during debug builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=-g
+
+//Flags used by the compiler during release minsize builds.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
+
+//Flags used by the compiler during release builds (/MD /Ob1 /Oi
+// /Ot /Oy /Gs will produce slightly less optimized but smaller
+// files).
+CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
+
+//Flags used by the compiler during Release with Debug Info builds.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g
+
+//C compiler.
+CMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc
+
+//Flags used by the compiler during all build types.
+CMAKE_C_FLAGS:STRING=
+
+//Flags used by the compiler during debug builds.
+CMAKE_C_FLAGS_DEBUG:STRING=-g
+
+//Flags used by the compiler during release minsize builds.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
+
+//Flags used by the compiler during release builds (/MD /Ob1 /Oi
+// /Ot /Oy /Gs will produce slightly less optimized but smaller
+// files).
+CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
+
+//Flags used by the compiler during Release with Debug Info builds.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g
+
+//Flags used by the linker.
+CMAKE_EXE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during debug builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during release minsize builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during release builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=/usr/local
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=/usr/bin/ld
+
+//Path to a program.
+CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
+
+//Flags used by the linker during the creation of modules.
+CMAKE_MODULE_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during debug builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during release minsize builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during release builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//Path to a program.
+CMAKE_NM:FILEPATH=/usr/bin/nm
+
+//Path to a program.
+CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy
+
+//Path to a program.
+CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=customdhcpdcd
+
+//Path to a program.
+CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
+
+//Flags used by the linker during the creation of dll's.
+CMAKE_SHARED_LINKER_FLAGS:STRING=
+
+//Flags used by the linker during debug builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during release minsize builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during release builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during Release with Debug Info builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=NO
+
+//Path to a program.
+CMAKE_STRIP:FILEPATH=/usr/bin/strip
+
+//If true, cmake will use relative paths in makefiles and projects.
+CMAKE_USE_RELATIVE_PATHS:BOOL=OFF
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
+
+//Value Computed by CMake
+customdhcpdcd_BINARY_DIR:STATIC=/home/niklas/fbgui/customdhcpcd/src/build
+
+//Value Computed by CMake
+customdhcpdcd_SOURCE_DIR:STATIC=/home/niklas/fbgui/customdhcpcd/src
+
+//Dependencies for target
+libcustomdhcpcd_LIB_DEPENDS:STATIC=
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//ADVANCED property for variable: CMAKE_AR
+CMAKE_AR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_BUILD_TOOL
+CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1
+//What is the target build tool cmake is generating for.
+CMAKE_BUILD_TOOL:INTERNAL=/usr/bin/make
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=/home/niklas/fbgui/customdhcpcd/src/build
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=8
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
+//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
+CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=/usr/bin/cmake
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest
+//ADVANCED property for variable: CMAKE_CXX_COMPILER
+CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_CXX_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_COMPILER
+CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_C_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Result of TRY_COMPILE
+CMAKE_DETERMINE_CXX_ABI_COMPILED:INTERNAL=TRUE
+//Result of TRY_COMPILE
+CMAKE_DETERMINE_C_ABI_COMPILED:INTERNAL=TRUE
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Unix Makefiles
+//Start directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=/home/niklas/fbgui/customdhcpcd/src
+//Install .so files without execute permission.
+CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
+CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_NM
+CMAKE_NM-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_OBJCOPY
+CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_OBJDUMP
+CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RANLIB
+CMAKE_RANLIB-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=/usr/share/cmake-2.8
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STRIP
+CMAKE_STRIP-ADVANCED:INTERNAL=1
+//uname command
+CMAKE_UNAME:INTERNAL=/bin/uname
+//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS
+CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeCCompiler.cmake b/customdhcpcd/src/build/CMakeFiles/CMakeCCompiler.cmake
new file mode 100644
index 0000000..2b06f62
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeCCompiler.cmake
@@ -0,0 +1,44 @@
+SET(CMAKE_C_COMPILER "/usr/bin/gcc")
+SET(CMAKE_C_COMPILER_ARG1 "")
+SET(CMAKE_C_COMPILER_ID "GNU")
+SET(CMAKE_C_PLATFORM_ID "Linux")
+
+SET(CMAKE_AR "/usr/bin/ar")
+SET(CMAKE_RANLIB "/usr/bin/ranlib")
+SET(CMAKE_LINKER "/usr/bin/ld")
+SET(CMAKE_COMPILER_IS_GNUCC 1)
+SET(CMAKE_C_COMPILER_LOADED 1)
+SET(CMAKE_COMPILER_IS_MINGW )
+SET(CMAKE_COMPILER_IS_CYGWIN )
+IF(CMAKE_COMPILER_IS_CYGWIN)
+ SET(CYGWIN 1)
+ SET(UNIX 1)
+ENDIF(CMAKE_COMPILER_IS_CYGWIN)
+
+SET(CMAKE_C_COMPILER_ENV_VAR "CC")
+
+IF(CMAKE_COMPILER_IS_MINGW)
+ SET(MINGW 1)
+ENDIF(CMAKE_COMPILER_IS_MINGW)
+SET(CMAKE_C_COMPILER_ID_RUN 1)
+SET(CMAKE_C_SOURCE_FILE_EXTENSIONS c)
+SET(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
+SET(CMAKE_C_LINKER_PREFERENCE 10)
+
+# Save compiler ABI information.
+SET(CMAKE_C_SIZEOF_DATA_PTR "4")
+SET(CMAKE_C_COMPILER_ABI "ELF")
+
+IF(CMAKE_C_SIZEOF_DATA_PTR)
+ SET(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
+ENDIF(CMAKE_C_SIZEOF_DATA_PTR)
+
+IF(CMAKE_C_COMPILER_ABI)
+ SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
+ENDIF(CMAKE_C_COMPILER_ABI)
+
+SET(CMAKE_C_HAS_ISYSROOT "")
+
+
+SET(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c")
+SET(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2;/usr/lib/i386-linux-gnu")
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeCXXCompiler.cmake b/customdhcpcd/src/build/CMakeFiles/CMakeCXXCompiler.cmake
new file mode 100644
index 0000000..7613c41
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeCXXCompiler.cmake
@@ -0,0 +1,45 @@
+SET(CMAKE_CXX_COMPILER "/usr/bin/c++")
+SET(CMAKE_CXX_COMPILER_ARG1 "")
+SET(CMAKE_CXX_COMPILER_ID "GNU")
+SET(CMAKE_CXX_PLATFORM_ID "Linux")
+
+SET(CMAKE_AR "/usr/bin/ar")
+SET(CMAKE_RANLIB "/usr/bin/ranlib")
+SET(CMAKE_LINKER "/usr/bin/ld")
+SET(CMAKE_COMPILER_IS_GNUCXX 1)
+SET(CMAKE_CXX_COMPILER_LOADED 1)
+SET(CMAKE_COMPILER_IS_MINGW )
+SET(CMAKE_COMPILER_IS_CYGWIN )
+IF(CMAKE_COMPILER_IS_CYGWIN)
+ SET(CYGWIN 1)
+ SET(UNIX 1)
+ENDIF(CMAKE_COMPILER_IS_CYGWIN)
+
+SET(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
+
+IF(CMAKE_COMPILER_IS_MINGW)
+ SET(MINGW 1)
+ENDIF(CMAKE_COMPILER_IS_MINGW)
+SET(CMAKE_CXX_COMPILER_ID_RUN 1)
+SET(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
+SET(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
+SET(CMAKE_CXX_LINKER_PREFERENCE 30)
+SET(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
+
+# Save compiler ABI information.
+SET(CMAKE_CXX_SIZEOF_DATA_PTR "4")
+SET(CMAKE_CXX_COMPILER_ABI "ELF")
+
+IF(CMAKE_CXX_SIZEOF_DATA_PTR)
+ SET(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
+ENDIF(CMAKE_CXX_SIZEOF_DATA_PTR)
+
+IF(CMAKE_CXX_COMPILER_ABI)
+ SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
+ENDIF(CMAKE_CXX_COMPILER_ABI)
+
+SET(CMAKE_CXX_HAS_ISYSROOT "")
+
+
+SET(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c")
+SET(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2;/usr/lib/i386-linux-gnu")
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_C.bin b/customdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_C.bin
new file mode 100755
index 0000000..b7710c0
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_C.bin
Binary files differ
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin b/customdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin
new file mode 100755
index 0000000..0e039b8
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin
Binary files differ
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeDirectoryInformation.cmake b/customdhcpcd/src/build/CMakeFiles/CMakeDirectoryInformation.cmake
new file mode 100644
index 0000000..e2e4141
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeDirectoryInformation.cmake
@@ -0,0 +1,21 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+# Relative path conversion top directories.
+SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/niklas/fbgui/customdhcpcd/src")
+SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/niklas/fbgui/customdhcpcd/src/build")
+
+# Force unix paths in dependencies.
+SET(CMAKE_FORCE_UNIX_PATHS 1)
+
+# The C and CXX include file search paths:
+SET(CMAKE_C_INCLUDE_PATH
+ )
+SET(CMAKE_CXX_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH})
+SET(CMAKE_Fortran_INCLUDE_PATH ${CMAKE_C_INCLUDE_PATH})
+
+# The C and CXX include file regular expressions for this directory.
+SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
+SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
+SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
+SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeOutput.log b/customdhcpcd/src/build/CMakeFiles/CMakeOutput.log
new file mode 100644
index 0000000..473d070
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeOutput.log
@@ -0,0 +1,240 @@
+The system is: Linux - 2.6.38-10-generic-pae - i686
+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
+Compiler: /usr/bin/gcc
+Build flags:
+Id flags:
+
+The output was:
+0
+
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
+
+The C compiler identification is GNU, found in "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/a.out"
+
+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
+Compiler: /usr/bin/c++
+Build flags:
+Id flags:
+
+The output was:
+0
+CMakeCXXCompilerId.cpp:79:58: warning: deprecated conversion from string constant to ‘char*’
+CMakeCXXCompilerId.cpp:192:58: warning: deprecated conversion from string constant to ‘char*’
+CMakeCXXCompilerId.cpp:193:54: warning: deprecated conversion from string constant to ‘char*’
+
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
+
+The CXX compiler identification is GNU, found in "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/a.out"
+
+Determining if the C compiler works passed with the following output:
+Change Dir: /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp
+
+Run Build Command:/usr/bin/make "cmTryCompileExec/fast"
+/usr/bin/make -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
+make[1]: Entering directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+/usr/bin/cmake -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/CMakeFiles 1
+Building C object CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o
+/usr/bin/gcc -o CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o -c /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/testCCompiler.c
+Linking C executable cmTryCompileExec
+/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
+/usr/bin/gcc CMakeFiles/cmTryCompileExec.dir/testCCompiler.c.o -o cmTryCompileExec -rdynamic
+make[1]: Leaving directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+
+
+Detecting C compiler ABI info compiled with the following output:
+Change Dir: /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp
+
+Run Build Command:/usr/bin/make "cmTryCompileExec/fast"
+/usr/bin/make -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
+make[1]: Entering directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+/usr/bin/cmake -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/CMakeFiles 1
+Building C object CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o
+/usr/bin/gcc -o CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c
+Linking C executable cmTryCompileExec
+/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
+/usr/bin/gcc -v CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec -rdynamic
+Using built-in specs.
+COLLECT_GCC=/usr/bin/gcc
+COLLECT_LTO_WRAPPER=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/lto-wrapper
+Target: i686-linux-gnu
+Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.5.2-8ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.5 --enable-shared --enable-multiarch --with-multiarch-defaults=i386-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/i386-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.5 --libdir=/usr/lib/i386-linux-gnu --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default --with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
+Thread model: posix
+gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4)
+COMPILER_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/
+LIBRARY_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../:/lib/:/usr/lib/:/usr/lib/i386-linux-gnu/
+COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-mtune=generic' '-march=i686'
+ /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/collect2 --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crti.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtbegin.o -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2 -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../.. -L/usr/lib/i386-linux-gnu CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtend.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crtn.o
+make[1]: Leaving directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+
+
+Parsed C implicit link information from above output:
+ link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
+ ignore line: [Change Dir: /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp]
+ ignore line: []
+ ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec/fast"]
+ ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build]
+ ignore line: [make[1]: Entering directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp']
+ ignore line: [/usr/bin/cmake -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/CMakeFiles 1]
+ ignore line: [Building C object CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o]
+ ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c]
+ ignore line: [Linking C executable cmTryCompileExec]
+ ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1]
+ ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec -rdynamic ]
+ ignore line: [Using built-in specs.]
+ ignore line: [COLLECT_GCC=/usr/bin/gcc]
+ ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/lto-wrapper]
+ ignore line: [Target: i686-linux-gnu]
+ ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.5.2-8ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.5 --enable-shared --enable-multiarch --with-multiarch-defaults=i386-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/i386-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.5 --libdir=/usr/lib/i386-linux-gnu --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default --with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu]
+ ignore line: [Thread model: posix]
+ ignore line: [gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) ]
+ ignore line: [COMPILER_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/]
+ ignore line: [LIBRARY_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../:/lib/:/usr/lib/:/usr/lib/i386-linux-gnu/]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-mtune=generic' '-march=i686']
+ link line: [ /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/collect2 --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crti.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtbegin.o -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2 -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../.. -L/usr/lib/i386-linux-gnu CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtend.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crtn.o]
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/collect2] ==> ignore
+ arg [--build-id] ==> ignore
+ arg [--eh-frame-hdr] ==> ignore
+ arg [-m] ==> ignore
+ arg [elf_i386] ==> ignore
+ arg [--hash-style=gnu] ==> ignore
+ arg [-export-dynamic] ==> ignore
+ arg [-dynamic-linker] ==> ignore
+ arg [/lib/ld-linux.so.2] ==> ignore
+ arg [-zrelro] ==> ignore
+ arg [-o] ==> ignore
+ arg [cmTryCompileExec] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crti.o] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtbegin.o] ==> ignore
+ arg [-L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2] ==> dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2]
+ arg [-L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../..] ==> dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../..]
+ arg [-L/usr/lib/i386-linux-gnu] ==> dir [/usr/lib/i386-linux-gnu]
+ arg [CMakeFiles/cmTryCompileExec.dir/CMakeCCompilerABI.c.o] ==> ignore
+ arg [-lgcc] ==> lib [gcc]
+ arg [--as-needed] ==> ignore
+ arg [-lgcc_s] ==> lib [gcc_s]
+ arg [--no-as-needed] ==> ignore
+ arg [-lc] ==> lib [c]
+ arg [-lgcc] ==> lib [gcc]
+ arg [--as-needed] ==> ignore
+ arg [-lgcc_s] ==> lib [gcc_s]
+ arg [--no-as-needed] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtend.o] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crtn.o] ==> ignore
+ remove lib [gcc]
+ remove lib [gcc_s]
+ remove lib [gcc]
+ remove lib [gcc_s]
+ collapse dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2] ==> [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2]
+ collapse dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../..] ==> [/usr/lib/i386-linux-gnu]
+ collapse dir [/usr/lib/i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
+ implicit libs: [c]
+ implicit dirs: [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2;/usr/lib/i386-linux-gnu]
+
+
+Determining if the CXX compiler works passed with the following output:
+Change Dir: /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp
+
+Run Build Command:/usr/bin/make "cmTryCompileExec/fast"
+/usr/bin/make -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
+make[1]: Entering directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+/usr/bin/cmake -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/CMakeFiles 1
+Building CXX object CMakeFiles/cmTryCompileExec.dir/testCXXCompiler.cxx.o
+/usr/bin/c++ -o CMakeFiles/cmTryCompileExec.dir/testCXXCompiler.cxx.o -c /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
+Linking CXX executable cmTryCompileExec
+/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
+/usr/bin/c++ CMakeFiles/cmTryCompileExec.dir/testCXXCompiler.cxx.o -o cmTryCompileExec -rdynamic
+make[1]: Leaving directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+
+
+Detecting CXX compiler ABI info compiled with the following output:
+Change Dir: /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp
+
+Run Build Command:/usr/bin/make "cmTryCompileExec/fast"
+/usr/bin/make -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build
+make[1]: Entering directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+/usr/bin/cmake -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/CMakeFiles 1
+Building CXX object CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o
+/usr/bin/c++ -o CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp
+Linking CXX executable cmTryCompileExec
+/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1
+/usr/bin/c++ -v CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec -rdynamic
+Using built-in specs.
+COLLECT_GCC=/usr/bin/c++
+COLLECT_LTO_WRAPPER=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/lto-wrapper
+Target: i686-linux-gnu
+Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.5.2-8ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.5 --enable-shared --enable-multiarch --with-multiarch-defaults=i386-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/i386-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.5 --libdir=/usr/lib/i386-linux-gnu --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default --with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
+Thread model: posix
+gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4)
+COMPILER_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/
+LIBRARY_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../:/lib/:/usr/lib/:/usr/lib/i386-linux-gnu/
+COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=i686'
+ /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/collect2 --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crti.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtbegin.o -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2 -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../.. -L/usr/lib/i386-linux-gnu CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtend.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crtn.o
+make[1]: Leaving directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp'
+
+
+Parsed CXX implicit link information from above output:
+ link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)]
+ ignore line: [Change Dir: /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp]
+ ignore line: []
+ ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec/fast"]
+ ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec.dir/build.make CMakeFiles/cmTryCompileExec.dir/build]
+ ignore line: [make[1]: Entering directory `/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp']
+ ignore line: [/usr/bin/cmake -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CMakeTmp/CMakeFiles 1]
+ ignore line: [Building CXX object CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o]
+ ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp]
+ ignore line: [Linking CXX executable cmTryCompileExec]
+ ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec.dir/link.txt --verbose=1]
+ ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec -rdynamic ]
+ ignore line: [Using built-in specs.]
+ ignore line: [COLLECT_GCC=/usr/bin/c++]
+ ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/lto-wrapper]
+ ignore line: [Target: i686-linux-gnu]
+ ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.5.2-8ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.5 --enable-shared --enable-multiarch --with-multiarch-defaults=i386-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/i386-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.5 --libdir=/usr/lib/i386-linux-gnu --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default --with-plugin-ld=ld.gold --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu]
+ ignore line: [Thread model: posix]
+ ignore line: [gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4) ]
+ ignore line: [COMPILER_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/]
+ ignore line: [LIBRARY_PATH=/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/:/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../:/lib/:/usr/lib/:/usr/lib/i386-linux-gnu/]
+ ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=i686']
+ link line: [ /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/collect2 --build-id --eh-frame-hdr -m elf_i386 --hash-style=gnu -export-dynamic -dynamic-linker /lib/ld-linux.so.2 -z relro -o cmTryCompileExec /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crti.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtbegin.o -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2 -L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../.. -L/usr/lib/i386-linux-gnu CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtend.o /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crtn.o]
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/collect2] ==> ignore
+ arg [--build-id] ==> ignore
+ arg [--eh-frame-hdr] ==> ignore
+ arg [-m] ==> ignore
+ arg [elf_i386] ==> ignore
+ arg [--hash-style=gnu] ==> ignore
+ arg [-export-dynamic] ==> ignore
+ arg [-dynamic-linker] ==> ignore
+ arg [/lib/ld-linux.so.2] ==> ignore
+ arg [-zrelro] ==> ignore
+ arg [-o] ==> ignore
+ arg [cmTryCompileExec] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crt1.o] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crti.o] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtbegin.o] ==> ignore
+ arg [-L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2] ==> dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2]
+ arg [-L/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../..] ==> dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../..]
+ arg [-L/usr/lib/i386-linux-gnu] ==> dir [/usr/lib/i386-linux-gnu]
+ arg [CMakeFiles/cmTryCompileExec.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
+ arg [-lstdc++] ==> lib [stdc++]
+ arg [-lm] ==> lib [m]
+ arg [-lgcc_s] ==> lib [gcc_s]
+ arg [-lgcc] ==> lib [gcc]
+ arg [-lc] ==> lib [c]
+ arg [-lgcc_s] ==> lib [gcc_s]
+ arg [-lgcc] ==> lib [gcc]
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/crtend.o] ==> ignore
+ arg [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../../crtn.o] ==> ignore
+ remove lib [gcc_s]
+ remove lib [gcc]
+ remove lib [gcc_s]
+ remove lib [gcc]
+ collapse dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2] ==> [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2]
+ collapse dir [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/../../..] ==> [/usr/lib/i386-linux-gnu]
+ collapse dir [/usr/lib/i386-linux-gnu] ==> [/usr/lib/i386-linux-gnu]
+ implicit libs: [stdc++;m;c]
+ implicit dirs: [/usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2;/usr/lib/i386-linux-gnu]
+
+
diff --git a/customdhcpcd/src/build/CMakeFiles/CMakeSystem.cmake b/customdhcpcd/src/build/CMakeFiles/CMakeSystem.cmake
new file mode 100644
index 0000000..278db3c
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CMakeSystem.cmake
@@ -0,0 +1,15 @@
+
+
+SET(CMAKE_SYSTEM "Linux-2.6.38-10-generic-pae")
+SET(CMAKE_SYSTEM_NAME "Linux")
+SET(CMAKE_SYSTEM_VERSION "2.6.38-10-generic-pae")
+SET(CMAKE_SYSTEM_PROCESSOR "i686")
+
+SET(CMAKE_HOST_SYSTEM "Linux-2.6.38-10-generic-pae")
+SET(CMAKE_HOST_SYSTEM_NAME "Linux")
+SET(CMAKE_HOST_SYSTEM_VERSION "2.6.38-10-generic-pae")
+SET(CMAKE_HOST_SYSTEM_PROCESSOR "i686")
+
+SET(CMAKE_CROSSCOMPILING "FALSE")
+
+SET(CMAKE_SYSTEM_LOADED 1)
diff --git a/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c b/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c
new file mode 100644
index 0000000..efa5677
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c
@@ -0,0 +1,220 @@
+#ifdef __cplusplus
+# error "A C++ compiler has been selected for C."
+#endif
+
+#if defined(__18CXX)
+# define ID_VOID_MAIN
+#endif
+
+#if defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "Watcom"
+
+#elif defined(__SUNPRO_C)
+# define COMPILER_ID "SunPro"
+
+#elif defined(__HP_cc)
+# define COMPILER_ID "HP"
+
+#elif defined(__DECC)
+# define COMPILER_ID "Compaq"
+
+#elif defined(__IBMC__)
+# if defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+# elif __IBMC__ >= 800
+# define COMPILER_ID "XL"
+# else
+# define COMPILER_ID "VisualAge"
+# endif
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+
+#elif defined(__PATHSCALE__)
+# define COMPILER_ID "PathScale"
+
+#elif defined(__GNUC__)
+# define COMPILER_ID "GNU"
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+
+#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+/* Analog Devices C++ compiler for Blackfin, TigerSHARC and
+ SHARC (21000) DSPs */
+# define COMPILER_ID "ADSP"
+
+/* IAR Systems compiler for embedded systems.
+ http://www.iar.com
+ Not supported yet by CMake
+#elif defined(__IAR_SYSTEMS_ICC__)
+# define COMPILER_ID "IAR" */
+
+/* sdcc, the small devices C compiler for embedded systems,
+ http://sdcc.sourceforge.net */
+#elif defined(SDCC)
+# define COMPILER_ID "SDCC"
+
+#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
+# define COMPILER_ID "MIPSpro"
+
+/* This compiler is either not known or is too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__sgi)
+# define COMPILER_ID "MIPSpro"
+
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
+# define PLATFORM_ID "IRIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU)
+# define PLATFORM_ID "Haiku"
+/* Haiku also defines __BEOS__ so we must
+ put it prior to the check for __BEOS__
+*/
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#else /* unknown platform */
+# define PLATFORM_ID ""
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is becase
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#else
+# define ARCHITECTURE_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+/*--------------------------------------------------------------------------*/
+
+#ifdef ID_VOID_MAIN
+void main() {}
+#else
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+ require += info_arch[argc];
+ (void)argv;
+ return require;
+}
+#endif
diff --git a/customdhcpcd/src/build/CMakeFiles/CompilerIdC/a.out b/customdhcpcd/src/build/CMakeFiles/CompilerIdC/a.out
new file mode 100755
index 0000000..0a9888a
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CompilerIdC/a.out
Binary files differ
diff --git a/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp b/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp
new file mode 100644
index 0000000..4c2289b
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -0,0 +1,206 @@
+/* This source file must have a .cpp extension so that all C++ compilers
+ recognize the extension without flags. Borland does not know .cxx for
+ example. */
+#ifndef __cplusplus
+# error "A C compiler has been selected for C++."
+#endif
+
+#if defined(__COMO__)
+# define COMPILER_ID "Comeau"
+
+#elif defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "Watcom"
+
+#elif defined(__SUNPRO_CC)
+# define COMPILER_ID "SunPro"
+
+#elif defined(__HP_aCC)
+# define COMPILER_ID "HP"
+
+#elif defined(__DECCXX)
+# define COMPILER_ID "Compaq"
+
+#elif defined(__IBMCPP__)
+# if defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+# elif __IBMCPP__ >= 800
+# define COMPILER_ID "XL"
+# else
+# define COMPILER_ID "VisualAge"
+# endif
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+
+#elif defined(__PATHSCALE__)
+# define COMPILER_ID "PathScale"
+
+#elif defined(__GNUC__)
+# define COMPILER_ID "GNU"
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+
+#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+/* Analog Devices C++ compiler for Blackfin, TigerSHARC and
+ SHARC (21000) DSPs */
+# define COMPILER_ID "ADSP"
+
+#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION)
+# define COMPILER_ID "MIPSpro"
+
+/* This compiler is either not known or is too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__sgi)
+# define COMPILER_ID "MIPSpro"
+
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
+# define PLATFORM_ID "IRIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU)
+# define PLATFORM_ID "Haiku"
+/* Haiku also defines __BEOS__ so we must
+ put it prior to the check for __BEOS__
+*/
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#else /* unknown platform */
+# define PLATFORM_ID ""
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is becase
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#else
+# define ARCHITECTURE_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+/*--------------------------------------------------------------------------*/
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+ (void)argv;
+ return require;
+}
diff --git a/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/a.out b/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/a.out
new file mode 100755
index 0000000..b564314
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/CompilerIdCXX/a.out
Binary files differ
diff --git a/customdhcpcd/src/build/CMakeFiles/Makefile.cmake b/customdhcpcd/src/build/CMakeFiles/Makefile.cmake
new file mode 100644
index 0000000..4547921
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/Makefile.cmake
@@ -0,0 +1,44 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+# The generator used is:
+SET(CMAKE_DEPENDS_GENERATOR "Unix Makefiles")
+
+# The top level Makefile was generated from the following files:
+SET(CMAKE_MAKEFILE_DEPENDS
+ "CMakeCache.txt"
+ "../CMakeLists.txt"
+ "CMakeFiles/CMakeCCompiler.cmake"
+ "CMakeFiles/CMakeCXXCompiler.cmake"
+ "CMakeFiles/CMakeSystem.cmake"
+ "/usr/share/cmake-2.8/Modules/CMakeCInformation.cmake"
+ "/usr/share/cmake-2.8/Modules/CMakeCXXInformation.cmake"
+ "/usr/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake"
+ "/usr/share/cmake-2.8/Modules/CMakeGenericSystem.cmake"
+ "/usr/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake"
+ "/usr/share/cmake-2.8/Modules/Compiler/GNU-C.cmake"
+ "/usr/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake"
+ "/usr/share/cmake-2.8/Modules/Compiler/GNU.cmake"
+ "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-C.cmake"
+ "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-CXX.cmake"
+ "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake"
+ "/usr/share/cmake-2.8/Modules/Platform/Linux.cmake"
+ "/usr/share/cmake-2.8/Modules/Platform/UnixPaths.cmake"
+ )
+
+# The corresponding makefile is:
+SET(CMAKE_MAKEFILE_OUTPUTS
+ "Makefile"
+ "CMakeFiles/cmake.check_cache"
+ )
+
+# Byproducts of CMake generate step:
+SET(CMAKE_MAKEFILE_PRODUCTS
+ "CMakeFiles/CMakeDirectoryInformation.cmake"
+ )
+
+# Dependency information for all targets:
+SET(CMAKE_DEPEND_INFO_FILES
+ "CMakeFiles/customdhcpcd.dir/DependInfo.cmake"
+ "CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake"
+ )
diff --git a/customdhcpcd/src/build/CMakeFiles/Makefile2 b/customdhcpcd/src/build/CMakeFiles/Makefile2
new file mode 100644
index 0000000..e9d5f1b
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/Makefile2
@@ -0,0 +1,131 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+# Default target executed when no arguments are given to make.
+default_target: all
+.PHONY : default_target
+
+# The main recursive all target
+all:
+.PHONY : all
+
+# The main recursive preinstall target
+preinstall:
+.PHONY : preinstall
+
+#=============================================================================
+# 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 top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/niklas/fbgui/customdhcpcd/src
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/niklas/fbgui/customdhcpcd/src/build
+
+#=============================================================================
+# Target rules for target CMakeFiles/customdhcpcd.dir
+
+# All Build rule for target.
+CMakeFiles/customdhcpcd.dir/all: CMakeFiles/libcustomdhcpcd.dir/all
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/depend
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/build
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 1
+ @echo "Built target customdhcpcd"
+.PHONY : CMakeFiles/customdhcpcd.dir/all
+
+# Include target in all.
+all: CMakeFiles/customdhcpcd.dir/all
+.PHONY : all
+
+# Build rule for subdir invocation for target.
+CMakeFiles/customdhcpcd.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 18
+ $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/customdhcpcd.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 0
+.PHONY : CMakeFiles/customdhcpcd.dir/rule
+
+# Convenience name for target.
+customdhcpcd: CMakeFiles/customdhcpcd.dir/rule
+.PHONY : customdhcpcd
+
+# clean rule for target.
+CMakeFiles/customdhcpcd.dir/clean:
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/clean
+.PHONY : CMakeFiles/customdhcpcd.dir/clean
+
+# clean rule for target.
+clean: CMakeFiles/customdhcpcd.dir/clean
+.PHONY : clean
+
+#=============================================================================
+# Target rules for target CMakeFiles/libcustomdhcpcd.dir
+
+# All Build rule for target.
+CMakeFiles/libcustomdhcpcd.dir/all:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/depend
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/build
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
+ @echo "Built target libcustomdhcpcd"
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/all
+
+# Include target in all.
+all: CMakeFiles/libcustomdhcpcd.dir/all
+.PHONY : all
+
+# Build rule for subdir invocation for target.
+CMakeFiles/libcustomdhcpcd.dir/rule: cmake_check_build_system
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 17
+ $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/libcustomdhcpcd.dir/all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 0
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/rule
+
+# Convenience name for target.
+libcustomdhcpcd: CMakeFiles/libcustomdhcpcd.dir/rule
+.PHONY : libcustomdhcpcd
+
+# clean rule for target.
+CMakeFiles/libcustomdhcpcd.dir/clean:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/clean
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/clean
+
+# clean rule for target.
+clean: CMakeFiles/libcustomdhcpcd.dir/clean
+.PHONY : clean
+
+#=============================================================================
+# 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:
+ $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/customdhcpcd/src/build/CMakeFiles/TargetDirectories.txt b/customdhcpcd/src/build/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..0549a5f
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,2 @@
+/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir
+/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir
diff --git a/customdhcpcd/src/build/CMakeFiles/cmake.check_cache b/customdhcpcd/src/build/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/C.includecache b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/C.includecache
new file mode 100644
index 0000000..f5ffc8c
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/C.includecache
@@ -0,0 +1,154 @@
+#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">])
+
+#IncludeRegexScan: ^.*$
+
+#IncludeRegexComplain: ^$
+
+#IncludeRegexTransform:
+
+/home/niklas/fbgui/customdhcpcd/src/client.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+
+/home/niklas/fbgui/customdhcpcd/src/common.h
+sys/time.h
+-
+stdio.h
+-
+string.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/config.h
+
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+netinet/in_systm.h
+-
+netinet/in.h
+-
+netinet/ip.h
+-
+netinet/udp.h
+-
+stdint.h
+-
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.c
+sys/file.h
+-
+sys/types.h
+-
+sys/stat.h
+-
+arpa/inet.h
+-
+errno.h
+-
+fcntl.h
+-
+getopt.h
+-
+paths.h
+-
+signal.h
+-
+stdbool.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+client.h
+/home/niklas/fbgui/customdhcpcd/src/client.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+version.h
+/home/niklas/fbgui/customdhcpcd/src/version.h
+logwriter.h
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+status.h
+/home/niklas/fbgui/customdhcpcd/src/status.h
+
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+sys/param.h
+-
+sys/socket.h
+-
+net/if.h
+-
+netinet/in.h
+-
+limits.h
+-
+stdbool.h
+-
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+sys/types.h
+-
+sys/param.h
+-
+sys/queue.h
+-
+sys/socket.h
+-
+net/if.h
+-
+netinet/in.h
+-
+netinet/if_ether.h
+-
+limits.h
+-
+stdbool.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+linux/netlink.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+syslog.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+arpa/inet.h
+-
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+stdbool.h
+-
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/status.h
+
+/home/niklas/fbgui/customdhcpcd/src/version.h
+
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/DependInfo.cmake b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/DependInfo.cmake
new file mode 100644
index 0000000..0a4f88d
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/DependInfo.cmake
@@ -0,0 +1,14 @@
+# The set of languages for which implicit dependencies are needed:
+SET(CMAKE_DEPENDS_LANGUAGES
+ "C"
+ )
+# The set of files for implicit dependencies of each language:
+SET(CMAKE_DEPENDS_CHECK_C
+ "/home/niklas/fbgui/customdhcpcd/src/dhcpcd.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/dhcpcd.c.o"
+ )
+SET(CMAKE_C_COMPILER_ID "GNU")
+
+# Targets to which this target links.
+SET(CMAKE_TARGET_LINKED_INFO_FILES
+ "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake"
+ )
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/build.make b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/build.make
new file mode 100644
index 0000000..13465f1
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/build.make
@@ -0,0 +1,101 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+#=============================================================================
+# 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 top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/niklas/fbgui/customdhcpcd/src
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/niklas/fbgui/customdhcpcd/src/build
+
+# Include any dependencies generated for this target.
+include CMakeFiles/customdhcpcd.dir/depend.make
+
+# Include the progress variables for this target.
+include CMakeFiles/customdhcpcd.dir/progress.make
+
+# Include the compile flags for this target's objects.
+include CMakeFiles/customdhcpcd.dir/flags.make
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: CMakeFiles/customdhcpcd.dir/flags.make
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../dhcpcd.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_1)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/customdhcpcd.dir/dhcpcd.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/customdhcpcd.dir/dhcpcd.c.o -c /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/customdhcpcd.dir/dhcpcd.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c > CMakeFiles/customdhcpcd.dir/dhcpcd.c.i
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/customdhcpcd.dir/dhcpcd.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c -o CMakeFiles/customdhcpcd.dir/dhcpcd.c.s
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.requires:
+.PHONY : CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.requires
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.provides: CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.requires
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.provides.build
+.PHONY : CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.provides
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.provides.build: CMakeFiles/customdhcpcd.dir/dhcpcd.c.o
+.PHONY : CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.provides.build
+
+# Object files for target customdhcpcd
+customdhcpcd_OBJECTS = \
+"CMakeFiles/customdhcpcd.dir/dhcpcd.c.o"
+
+# External object files for target customdhcpcd
+customdhcpcd_EXTERNAL_OBJECTS =
+
+customdhcpcd: CMakeFiles/customdhcpcd.dir/dhcpcd.c.o
+customdhcpcd: liblibcustomdhcpcd.a
+customdhcpcd: CMakeFiles/customdhcpcd.dir/build.make
+customdhcpcd: CMakeFiles/customdhcpcd.dir/link.txt
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking C executable customdhcpcd"
+ $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/customdhcpcd.dir/link.txt --verbose=$(VERBOSE)
+
+# Rule to build all files generated by this target.
+CMakeFiles/customdhcpcd.dir/build: customdhcpcd
+.PHONY : CMakeFiles/customdhcpcd.dir/build
+
+CMakeFiles/customdhcpcd.dir/requires: CMakeFiles/customdhcpcd.dir/dhcpcd.c.o.requires
+.PHONY : CMakeFiles/customdhcpcd.dir/requires
+
+CMakeFiles/customdhcpcd.dir/clean:
+ $(CMAKE_COMMAND) -P CMakeFiles/customdhcpcd.dir/cmake_clean.cmake
+.PHONY : CMakeFiles/customdhcpcd.dir/clean
+
+CMakeFiles/customdhcpcd.dir/depend:
+ cd /home/niklas/fbgui/customdhcpcd/src/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/niklas/fbgui/customdhcpcd/src /home/niklas/fbgui/customdhcpcd/src /home/niklas/fbgui/customdhcpcd/src/build /home/niklas/fbgui/customdhcpcd/src/build /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/DependInfo.cmake --color=$(COLOR)
+.PHONY : CMakeFiles/customdhcpcd.dir/depend
+
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/cmake_clean.cmake b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/cmake_clean.cmake
new file mode 100644
index 0000000..642a0a9
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/cmake_clean.cmake
@@ -0,0 +1,10 @@
+FILE(REMOVE_RECURSE
+ "CMakeFiles/customdhcpcd.dir/dhcpcd.c.o"
+ "customdhcpcd.pdb"
+ "customdhcpcd"
+)
+
+# Per-language clean rules from dependency scanning.
+FOREACH(lang C)
+ INCLUDE(CMakeFiles/customdhcpcd.dir/cmake_clean_${lang}.cmake OPTIONAL)
+ENDFOREACH(lang)
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.internal b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.internal
new file mode 100644
index 0000000..0833ad6
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.internal
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o
+ /home/niklas/fbgui/customdhcpcd/src/client.h
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
+ /home/niklas/fbgui/customdhcpcd/src/status.h
+ /home/niklas/fbgui/customdhcpcd/src/version.h
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.make b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.make
new file mode 100644
index 0000000..a7a0008
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/depend.make
@@ -0,0 +1,16 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../client.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../common.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../config.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../dhcp.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../dhcpcd.c
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../dhcpcd.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../interface.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../logger.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../logwriter.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../socket.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../status.h
+CMakeFiles/customdhcpcd.dir/dhcpcd.c.o: ../version.h
+
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/flags.make b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/flags.make
new file mode 100644
index 0000000..1d28a45
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/flags.make
@@ -0,0 +1,8 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+# compile C with /usr/bin/gcc
+C_FLAGS = -lrt
+
+C_DEFINES =
+
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/link.txt b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/link.txt
new file mode 100644
index 0000000..714a859
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/link.txt
@@ -0,0 +1 @@
+/usr/bin/gcc -lrt CMakeFiles/customdhcpcd.dir/dhcpcd.c.o -o customdhcpcd -rdynamic liblibcustomdhcpcd.a
diff --git a/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/progress.make b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/progress.make
new file mode 100644
index 0000000..781c7de
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/customdhcpcd.dir/progress.make
@@ -0,0 +1,2 @@
+CMAKE_PROGRESS_1 = 1
+
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/C.includecache b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/C.includecache
new file mode 100644
index 0000000..fe17545
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/C.includecache
@@ -0,0 +1,700 @@
+#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">])
+
+#IncludeRegexScan: ^.*$
+
+#IncludeRegexComplain: ^$
+
+#IncludeRegexTransform:
+
+/home/niklas/fbgui/customdhcpcd/src/../../common/fbgui.h
+
+/home/niklas/fbgui/customdhcpcd/src/arp.c
+sys/time.h
+-
+sys/types.h
+-
+sys/ioctl.h
+-
+sys/socket.h
+-
+netinet/in_systm.h
+-
+netinet/ether.h
+-
+netpacket/packet.h
+-
+net/if.h
+-
+net/if_arp.h
+-
+arpa/inet.h
+-
+errno.h
+-
+poll.h
+-
+stdlib.h
+-
+string.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+arp.h
+/home/niklas/fbgui/customdhcpcd/src/arp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+signal.h
+/home/niklas/fbgui/customdhcpcd/src/signal.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+
+/home/niklas/fbgui/customdhcpcd/src/arp.h
+netinet/in.h
+-
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c
+
+/home/niklas/fbgui/customdhcpcd/src/client.c
+sys/time.h
+-
+sys/types.h
+-
+arpa/inet.h
+-
+netinet/ether.h
+-
+ctype.h
+-
+errno.h
+-
+poll.h
+-
+signal.h
+-
+stdbool.h
+-
+stdlib.h
+-
+stdio.h
+-
+string.h
+-
+time.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+arp.h
+/home/niklas/fbgui/customdhcpcd/src/arp.h
+client.h
+/home/niklas/fbgui/customdhcpcd/src/client.h
+configure.h
+/home/niklas/fbgui/customdhcpcd/src/configure.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+info.h
+/home/niklas/fbgui/customdhcpcd/src/info.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+ipv4ll.h
+/home/niklas/fbgui/customdhcpcd/src/ipv4ll.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+signal.h
+/home/niklas/fbgui/customdhcpcd/src/signal.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+logwriter.h
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+status.h
+/home/niklas/fbgui/customdhcpcd/src/status.h
+duid.h
+/home/niklas/fbgui/customdhcpcd/src/duid.h
+info.h
+/home/niklas/fbgui/customdhcpcd/src/info.h
+
+/home/niklas/fbgui/customdhcpcd/src/client.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+
+/home/niklas/fbgui/customdhcpcd/src/common.c
+sys/time.h
+-
+errno.h
+-
+fcntl.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+time.h
+-
+unistd.h
+-
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+
+/home/niklas/fbgui/customdhcpcd/src/common.h
+sys/time.h
+-
+stdio.h
+-
+string.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/config.h
+
+/home/niklas/fbgui/customdhcpcd/src/configure.c
+sys/types.h
+-
+sys/ioctl.h
+-
+sys/param.h
+-
+sys/socket.h
+-
+sys/stat.h
+-
+arpa/inet.h
+-
+netinet/in.h
+-
+netinet/ether.h
+-
+string.h
+-
+errno.h
+-
+netdb.h
+-
+resolv.h
+-
+signal.h
+-
+stdarg.h
+-
+stdlib.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+configure.h
+/home/niklas/fbgui/customdhcpcd/src/configure.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+info.h
+/home/niklas/fbgui/customdhcpcd/src/info.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+signal.h
+/home/niklas/fbgui/customdhcpcd/src/signal.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+status.h
+/home/niklas/fbgui/customdhcpcd/src/status.h
+logwriter.h
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+
+/home/niklas/fbgui/customdhcpcd/src/configure.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+
+/home/niklas/fbgui/customdhcpcd/src/customdhcpcd.c
+stdio.h
+-
+stdlib.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/dhcp.c
+sys/types.h
+-
+sys/socket.h
+-
+sys/time.h
+-
+netinet/in.h
+-
+net/if_arp.h
+-
+arpa/inet.h
+-
+errno.h
+-
+limits.h
+-
+math.h
+-
+stdio.h
+-
+stdint.h
+-
+stdlib.h
+-
+string.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+netinet/in_systm.h
+-
+netinet/in.h
+-
+netinet/ip.h
+-
+netinet/udp.h
+-
+stdint.h
+-
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.c
+sys/file.h
+-
+sys/types.h
+-
+sys/stat.h
+-
+arpa/inet.h
+-
+errno.h
+-
+fcntl.h
+-
+getopt.h
+-
+paths.h
+-
+signal.h
+-
+stdbool.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+client.h
+/home/niklas/fbgui/customdhcpcd/src/client.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+version.h
+/home/niklas/fbgui/customdhcpcd/src/version.h
+logwriter.h
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+status.h
+/home/niklas/fbgui/customdhcpcd/src/status.h
+
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+sys/param.h
+-
+sys/socket.h
+-
+net/if.h
+-
+netinet/in.h
+-
+limits.h
+-
+stdbool.h
+-
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+
+/home/niklas/fbgui/customdhcpcd/src/discover.c
+
+/home/niklas/fbgui/customdhcpcd/src/duid.c
+arpa/inet.h
+-
+errno.h
+-
+stdbool.h
+-
+stdlib.h
+-
+stdio.h
+-
+string.h
+-
+unistd.h
+-
+time.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+duid.h
+/home/niklas/fbgui/customdhcpcd/src/duid.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+
+/home/niklas/fbgui/customdhcpcd/src/duid.h
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/info.c
+sys/stat.h
+-
+arpa/inet.h
+-
+string.h
+-
+errno.h
+-
+stdio.h
+-
+stdlib.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+info.h
+/home/niklas/fbgui/customdhcpcd/src/info.h
+
+/home/niklas/fbgui/customdhcpcd/src/info.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+
+/home/niklas/fbgui/customdhcpcd/src/interface.c
+sys/types.h
+-
+sys/socket.h
+-
+sys/stat.h
+-
+sys/ioctl.h
+-
+sys/param.h
+-
+arpa/inet.h
+-
+asm/types.h
+-
+linux/netlink.h
+-
+linux/rtnetlink.h
+-
+netinet/ether.h
+-
+netpacket/packet.h
+-
+net/if_dl.h
+-
+net/if_types.h
+-
+net/route.h
+-
+netinet/in.h
+-
+ctype.h
+-
+errno.h
+-
+stddef.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+unistd.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+sys/types.h
+-
+sys/param.h
+-
+sys/queue.h
+-
+sys/socket.h
+-
+net/if.h
+-
+netinet/in.h
+-
+netinet/if_ether.h
+-
+limits.h
+-
+stdbool.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+linux/netlink.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/ipv4ll.c
+errno.h
+-
+stdlib.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+arp.h
+/home/niklas/fbgui/customdhcpcd/src/arp.h
+ipv4ll.h
+/home/niklas/fbgui/customdhcpcd/src/ipv4ll.h
+
+/home/niklas/fbgui/customdhcpcd/src/ipv4ll.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/logger.c
+sys/types.h
+-
+sys/socket.h
+-
+sys/un.h
+-
+ctype.h
+-
+stdarg.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+syslog.h
+-
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+logwriter.h
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+syslog.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/logwriter.c
+arpa/inet.h
+-
+sys/types.h
+-
+sys/socket.h
+-
+sys/un.h
+-
+ctype.h
+-
+stdarg.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+syslog.h
+-
+unistd.h
+-
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+errno.h
+/home/niklas/fbgui/customdhcpcd/src/errno.h
+info.h
+/home/niklas/fbgui/customdhcpcd/src/info.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+logwriter.h
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+status.h
+/home/niklas/fbgui/customdhcpcd/src/status.h
+../../common/fbgui.h
+/home/niklas/fbgui/customdhcpcd/src/../../common/fbgui.h
+
+/home/niklas/fbgui/customdhcpcd/src/logwriter.h
+arpa/inet.h
+-
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+dhcpcd.h
+/home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+
+/home/niklas/fbgui/customdhcpcd/src/signal.c
+sys/types.h
+-
+sys/socket.h
+-
+errno.h
+-
+poll.h
+-
+signal.h
+-
+string.h
+-
+unistd.h
+-
+common.h
+/home/niklas/fbgui/customdhcpcd/src/common.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+signal.h
+/home/niklas/fbgui/customdhcpcd/src/signal.h
+
+/home/niklas/fbgui/customdhcpcd/src/signal.h
+poll.h
+-
+
+/home/niklas/fbgui/customdhcpcd/src/socket.c
+sys/types.h
+-
+sys/ioctl.h
+-
+sys/param.h
+-
+sys/socket.h
+-
+sys/uio.h
+-
+net/if.h
+-
+netinet/in_systm.h
+-
+netinet/in.h
+-
+netinet/udp.h
+-
+arpa/inet.h
+-
+errno.h
+-
+fcntl.h
+-
+stdio.h
+-
+stdlib.h
+-
+string.h
+-
+time.h
+-
+unistd.h
+-
+net/bpf.h
+-
+linux/filter.h
+-
+netpacket/packet.h
+-
+config.h
+/home/niklas/fbgui/customdhcpcd/src/config.h
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+logger.h
+/home/niklas/fbgui/customdhcpcd/src/logger.h
+socket.h
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+
+/home/niklas/fbgui/customdhcpcd/src/socket.h
+stdbool.h
+-
+dhcp.h
+/home/niklas/fbgui/customdhcpcd/src/dhcp.h
+interface.h
+/home/niklas/fbgui/customdhcpcd/src/interface.h
+
+/home/niklas/fbgui/customdhcpcd/src/status.h
+
+/home/niklas/fbgui/customdhcpcd/src/version.h
+
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake
new file mode 100644
index 0000000..a605779
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake
@@ -0,0 +1,29 @@
+# The set of languages for which implicit dependencies are needed:
+SET(CMAKE_DEPENDS_LANGUAGES
+ "C"
+ )
+# The set of files for implicit dependencies of each language:
+SET(CMAKE_DEPENDS_CHECK_C
+ "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/arp.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/arp.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/client.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/client.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/common.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/common.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/configure.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/configure.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/customdhcpcd.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/dhcp.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/dhcpcd.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/discover.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/discover.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/duid.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/duid.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/info.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/info.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/interface.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/interface.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/ipv4ll.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/logger.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/logger.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/logwriter.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/signal.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/signal.c.o"
+ "/home/niklas/fbgui/customdhcpcd/src/socket.c" "/home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/socket.c.o"
+ )
+SET(CMAKE_C_COMPILER_ID "GNU")
+
+# Targets to which this target links.
+SET(CMAKE_TARGET_LINKED_INFO_FILES
+ )
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/build.make b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/build.make
new file mode 100644
index 0000000..8327971
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/build.make
@@ -0,0 +1,533 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+#=============================================================================
+# 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 top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/niklas/fbgui/customdhcpcd/src
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/niklas/fbgui/customdhcpcd/src/build
+
+# Include any dependencies generated for this target.
+include CMakeFiles/libcustomdhcpcd.dir/depend.make
+
+# Include the progress variables for this target.
+include CMakeFiles/libcustomdhcpcd.dir/progress.make
+
+# Include the compile flags for this target's objects.
+include CMakeFiles/libcustomdhcpcd.dir/flags.make
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../client.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_1)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/client.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/client.c.o -c /home/niklas/fbgui/customdhcpcd/src/client.c
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/client.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/client.c > CMakeFiles/libcustomdhcpcd.dir/client.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/client.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/client.c -o CMakeFiles/libcustomdhcpcd.dir/client.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/client.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/client.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/client.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/client.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/client.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/client.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../dhcp.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_2)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o -c /home/niklas/fbgui/customdhcpcd/src/dhcp.c
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/dhcp.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/dhcp.c > CMakeFiles/libcustomdhcpcd.dir/dhcp.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/dhcp.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/dhcp.c -o CMakeFiles/libcustomdhcpcd.dir/dhcp.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o: ../customdhcpcd.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_3)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o -c /home/niklas/fbgui/customdhcpcd/src/customdhcpcd.c
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/customdhcpcd.c > CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/customdhcpcd.c -o CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../duid.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_4)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/duid.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/duid.c.o -c /home/niklas/fbgui/customdhcpcd/src/duid.c
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/duid.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/duid.c > CMakeFiles/libcustomdhcpcd.dir/duid.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/duid.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/duid.c -o CMakeFiles/libcustomdhcpcd.dir/duid.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/duid.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/duid.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/duid.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/duid.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/duid.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/duid.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../logwriter.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_5)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o -c /home/niklas/fbgui/customdhcpcd/src/logwriter.c
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/logwriter.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/logwriter.c > CMakeFiles/libcustomdhcpcd.dir/logwriter.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/logwriter.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/logwriter.c -o CMakeFiles/libcustomdhcpcd.dir/logwriter.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../dhcpcd.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_6)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o -c /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c > CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c -o CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o: CMakeFiles/CompilerIdC/CMakeCCompilerId.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_7)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o -c /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c > CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c -o CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../ipv4ll.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_8)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o -c /home/niklas/fbgui/customdhcpcd/src/ipv4ll.c
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/ipv4ll.c > CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/ipv4ll.c -o CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../arp.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_9)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/arp.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/arp.c.o -c /home/niklas/fbgui/customdhcpcd/src/arp.c
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/arp.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/arp.c > CMakeFiles/libcustomdhcpcd.dir/arp.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/arp.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/arp.c -o CMakeFiles/libcustomdhcpcd.dir/arp.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/arp.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/arp.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/arp.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/arp.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/arp.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/arp.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../interface.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_10)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/interface.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/interface.c.o -c /home/niklas/fbgui/customdhcpcd/src/interface.c
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/interface.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/interface.c > CMakeFiles/libcustomdhcpcd.dir/interface.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/interface.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/interface.c -o CMakeFiles/libcustomdhcpcd.dir/interface.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/interface.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/interface.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/interface.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/interface.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/interface.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/interface.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../configure.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_11)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/configure.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/configure.c.o -c /home/niklas/fbgui/customdhcpcd/src/configure.c
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/configure.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/configure.c > CMakeFiles/libcustomdhcpcd.dir/configure.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/configure.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/configure.c -o CMakeFiles/libcustomdhcpcd.dir/configure.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/configure.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/configure.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/configure.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/configure.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/configure.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/configure.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o: ../signal.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_12)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/signal.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/signal.c.o -c /home/niklas/fbgui/customdhcpcd/src/signal.c
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/signal.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/signal.c > CMakeFiles/libcustomdhcpcd.dir/signal.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/signal.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/signal.c -o CMakeFiles/libcustomdhcpcd.dir/signal.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/signal.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/signal.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/signal.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/signal.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/signal.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/signal.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../socket.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_13)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/socket.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/socket.c.o -c /home/niklas/fbgui/customdhcpcd/src/socket.c
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/socket.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/socket.c > CMakeFiles/libcustomdhcpcd.dir/socket.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/socket.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/socket.c -o CMakeFiles/libcustomdhcpcd.dir/socket.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/socket.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/socket.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/socket.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/socket.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/socket.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/socket.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../info.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_14)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/info.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/info.c.o -c /home/niklas/fbgui/customdhcpcd/src/info.c
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/info.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/info.c > CMakeFiles/libcustomdhcpcd.dir/info.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/info.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/info.c -o CMakeFiles/libcustomdhcpcd.dir/info.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/info.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/info.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/info.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/info.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/info.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/info.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o: ../discover.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_15)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/discover.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/discover.c.o -c /home/niklas/fbgui/customdhcpcd/src/discover.c
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/discover.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/discover.c > CMakeFiles/libcustomdhcpcd.dir/discover.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/discover.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/discover.c -o CMakeFiles/libcustomdhcpcd.dir/discover.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/discover.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/discover.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/discover.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/discover.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/discover.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/discover.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../logger.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_16)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/logger.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/logger.c.o -c /home/niklas/fbgui/customdhcpcd/src/logger.c
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/logger.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/logger.c > CMakeFiles/libcustomdhcpcd.dir/logger.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/logger.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/logger.c -o CMakeFiles/libcustomdhcpcd.dir/logger.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/logger.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/logger.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logger.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/logger.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/logger.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/logger.c.o.provides.build
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.o: CMakeFiles/libcustomdhcpcd.dir/flags.make
+CMakeFiles/libcustomdhcpcd.dir/common.c.o: ../common.c
+ $(CMAKE_COMMAND) -E cmake_progress_report /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles $(CMAKE_PROGRESS_17)
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building C object CMakeFiles/libcustomdhcpcd.dir/common.c.o"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -o CMakeFiles/libcustomdhcpcd.dir/common.c.o -c /home/niklas/fbgui/customdhcpcd/src/common.c
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.i: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/libcustomdhcpcd.dir/common.c.i"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -E /home/niklas/fbgui/customdhcpcd/src/common.c > CMakeFiles/libcustomdhcpcd.dir/common.c.i
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.s: cmake_force
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/libcustomdhcpcd.dir/common.c.s"
+ /usr/bin/gcc $(C_DEFINES) $(C_FLAGS) -S /home/niklas/fbgui/customdhcpcd/src/common.c -o CMakeFiles/libcustomdhcpcd.dir/common.c.s
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.o.requires:
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/common.c.o.requires
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.o.provides: CMakeFiles/libcustomdhcpcd.dir/common.c.o.requires
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/common.c.o.provides.build
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/common.c.o.provides
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.o.provides.build: CMakeFiles/libcustomdhcpcd.dir/common.c.o
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/common.c.o.provides.build
+
+# Object files for target libcustomdhcpcd
+libcustomdhcpcd_OBJECTS = \
+"CMakeFiles/libcustomdhcpcd.dir/client.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/duid.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/arp.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/interface.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/configure.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/signal.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/socket.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/info.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/discover.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/logger.c.o" \
+"CMakeFiles/libcustomdhcpcd.dir/common.c.o"
+
+# External object files for target libcustomdhcpcd
+libcustomdhcpcd_EXTERNAL_OBJECTS =
+
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/client.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/duid.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/arp.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/interface.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/configure.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/signal.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/socket.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/info.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/discover.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/logger.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/common.c.o
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/build.make
+liblibcustomdhcpcd.a: CMakeFiles/libcustomdhcpcd.dir/link.txt
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking C static library liblibcustomdhcpcd.a"
+ $(CMAKE_COMMAND) -P CMakeFiles/libcustomdhcpcd.dir/cmake_clean_target.cmake
+ $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/libcustomdhcpcd.dir/link.txt --verbose=$(VERBOSE)
+
+# Rule to build all files generated by this target.
+CMakeFiles/libcustomdhcpcd.dir/build: liblibcustomdhcpcd.a
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/build
+
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/client.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/duid.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/arp.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/interface.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/configure.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/signal.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/socket.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/info.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/discover.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/logger.c.o.requires
+CMakeFiles/libcustomdhcpcd.dir/requires: CMakeFiles/libcustomdhcpcd.dir/common.c.o.requires
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/requires
+
+CMakeFiles/libcustomdhcpcd.dir/clean:
+ $(CMAKE_COMMAND) -P CMakeFiles/libcustomdhcpcd.dir/cmake_clean.cmake
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/clean
+
+CMakeFiles/libcustomdhcpcd.dir/depend:
+ cd /home/niklas/fbgui/customdhcpcd/src/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/niklas/fbgui/customdhcpcd/src /home/niklas/fbgui/customdhcpcd/src /home/niklas/fbgui/customdhcpcd/src/build /home/niklas/fbgui/customdhcpcd/src/build /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/DependInfo.cmake --color=$(COLOR)
+.PHONY : CMakeFiles/libcustomdhcpcd.dir/depend
+
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean.cmake b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean.cmake
new file mode 100644
index 0000000..4ad0f09
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean.cmake
@@ -0,0 +1,26 @@
+FILE(REMOVE_RECURSE
+ "CMakeFiles/libcustomdhcpcd.dir/client.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/duid.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/arp.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/interface.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/configure.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/signal.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/socket.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/info.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/discover.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/logger.c.o"
+ "CMakeFiles/libcustomdhcpcd.dir/common.c.o"
+ "liblibcustomdhcpcd.pdb"
+ "liblibcustomdhcpcd.a"
+)
+
+# Per-language clean rules from dependency scanning.
+FOREACH(lang C)
+ INCLUDE(CMakeFiles/libcustomdhcpcd.dir/cmake_clean_${lang}.cmake OPTIONAL)
+ENDFOREACH(lang)
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean_target.cmake b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean_target.cmake
new file mode 100644
index 0000000..69d83d2
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/cmake_clean_target.cmake
@@ -0,0 +1,3 @@
+FILE(REMOVE_RECURSE
+ "liblibcustomdhcpcd.a"
+)
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.internal b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.internal
new file mode 100644
index 0000000..a22b805
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.internal
@@ -0,0 +1,143 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o
+ /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/CompilerIdC/CMakeCCompilerId.c
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o
+ /home/niklas/fbgui/customdhcpcd/src/arp.c
+ /home/niklas/fbgui/customdhcpcd/src/arp.h
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/signal.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o
+ /home/niklas/fbgui/customdhcpcd/src/arp.h
+ /home/niklas/fbgui/customdhcpcd/src/client.c
+ /home/niklas/fbgui/customdhcpcd/src/client.h
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/configure.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/duid.h
+ /home/niklas/fbgui/customdhcpcd/src/info.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/ipv4ll.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
+ /home/niklas/fbgui/customdhcpcd/src/status.h
+CMakeFiles/libcustomdhcpcd.dir/common.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.c
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/configure.c
+ /home/niklas/fbgui/customdhcpcd/src/configure.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/info.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
+ /home/niklas/fbgui/customdhcpcd/src/status.h
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o
+ /home/niklas/fbgui/customdhcpcd/src/customdhcpcd.c
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.c
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o
+ /home/niklas/fbgui/customdhcpcd/src/client.h
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.c
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
+ /home/niklas/fbgui/customdhcpcd/src/status.h
+ /home/niklas/fbgui/customdhcpcd/src/version.h
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o
+ /home/niklas/fbgui/customdhcpcd/src/discover.c
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/duid.c
+ /home/niklas/fbgui/customdhcpcd/src/duid.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/info.c
+ /home/niklas/fbgui/customdhcpcd/src/info.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.c
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o
+ /home/niklas/fbgui/customdhcpcd/src/arp.h
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/ipv4ll.c
+ /home/niklas/fbgui/customdhcpcd/src/ipv4ll.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.c
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o
+ /home/niklas/fbgui/customdhcpcd/src/../../common/fbgui.h
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/info.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.c
+ /home/niklas/fbgui/customdhcpcd/src/logwriter.h
+ /home/niklas/fbgui/customdhcpcd/src/status.h
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/signal.c
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o
+ /home/niklas/fbgui/customdhcpcd/src/common.h
+ /home/niklas/fbgui/customdhcpcd/src/config.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcp.h
+ /home/niklas/fbgui/customdhcpcd/src/dhcpcd.h
+ /home/niklas/fbgui/customdhcpcd/src/interface.h
+ /home/niklas/fbgui/customdhcpcd/src/logger.h
+ /home/niklas/fbgui/customdhcpcd/src/socket.c
+ /home/niklas/fbgui/customdhcpcd/src/socket.h
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.make b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.make
new file mode 100644
index 0000000..3616520
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/depend.make
@@ -0,0 +1,143 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o: CMakeFiles/CompilerIdC/CMakeCCompilerId.c
+
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../arp.c
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../arp.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../signal.h
+CMakeFiles/libcustomdhcpcd.dir/arp.c.o: ../socket.h
+
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../arp.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../client.c
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../client.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../configure.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../duid.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../info.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../ipv4ll.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../logwriter.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../socket.h
+CMakeFiles/libcustomdhcpcd.dir/client.c.o: ../status.h
+
+CMakeFiles/libcustomdhcpcd.dir/common.c.o: ../common.c
+CMakeFiles/libcustomdhcpcd.dir/common.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/common.c.o: ../logger.h
+
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../configure.c
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../configure.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../info.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../logwriter.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../socket.h
+CMakeFiles/libcustomdhcpcd.dir/configure.c.o: ../status.h
+
+CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o: ../customdhcpcd.c
+
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../dhcp.c
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o: ../socket.h
+
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../client.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../dhcpcd.c
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../logwriter.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../socket.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../status.h
+CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o: ../version.h
+
+CMakeFiles/libcustomdhcpcd.dir/discover.c.o: ../discover.c
+
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../duid.c
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../duid.h
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/duid.c.o: ../logger.h
+
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../info.c
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../info.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/info.c.o: ../logger.h
+
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../interface.c
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/interface.c.o: ../logger.h
+
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../arp.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../ipv4ll.c
+CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o: ../ipv4ll.h
+
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../logger.c
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/logger.c.o: ../logwriter.h
+
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../../../common/fbgui.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../info.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../logwriter.c
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../logwriter.h
+CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o: ../status.h
+
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/signal.c.o: ../signal.c
+
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../common.h
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../config.h
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../dhcp.h
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../dhcpcd.h
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../interface.h
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../logger.h
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../socket.c
+CMakeFiles/libcustomdhcpcd.dir/socket.c.o: ../socket.h
+
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/flags.make b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/flags.make
new file mode 100644
index 0000000..1d28a45
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/flags.make
@@ -0,0 +1,8 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+# compile C with /usr/bin/gcc
+C_FLAGS = -lrt
+
+C_DEFINES =
+
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/link.txt b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/link.txt
new file mode 100644
index 0000000..4e05948
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/link.txt
@@ -0,0 +1,2 @@
+/usr/bin/ar cr liblibcustomdhcpcd.a CMakeFiles/libcustomdhcpcd.dir/client.c.o CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o CMakeFiles/libcustomdhcpcd.dir/duid.c.o CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o CMakeFiles/libcustomdhcpcd.dir/arp.c.o CMakeFiles/libcustomdhcpcd.dir/interface.c.o CMakeFiles/libcustomdhcpcd.dir/configure.c.o CMakeFiles/libcustomdhcpcd.dir/signal.c.o CMakeFiles/libcustomdhcpcd.dir/socket.c.o CMakeFiles/libcustomdhcpcd.dir/info.c.o CMakeFiles/libcustomdhcpcd.dir/discover.c.o CMakeFiles/libcustomdhcpcd.dir/logger.c.o CMakeFiles/libcustomdhcpcd.dir/common.c.o
+/usr/bin/ranlib liblibcustomdhcpcd.a
diff --git a/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/progress.make b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/progress.make
new file mode 100644
index 0000000..8946be8
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/libcustomdhcpcd.dir/progress.make
@@ -0,0 +1,18 @@
+CMAKE_PROGRESS_1 = 2
+CMAKE_PROGRESS_2 = 3
+CMAKE_PROGRESS_3 = 4
+CMAKE_PROGRESS_4 = 5
+CMAKE_PROGRESS_5 = 6
+CMAKE_PROGRESS_6 = 7
+CMAKE_PROGRESS_7 = 8
+CMAKE_PROGRESS_8 = 9
+CMAKE_PROGRESS_9 = 10
+CMAKE_PROGRESS_10 = 11
+CMAKE_PROGRESS_11 = 12
+CMAKE_PROGRESS_12 = 13
+CMAKE_PROGRESS_13 = 14
+CMAKE_PROGRESS_14 = 15
+CMAKE_PROGRESS_15 = 16
+CMAKE_PROGRESS_16 = 17
+CMAKE_PROGRESS_17 = 18
+
diff --git a/customdhcpcd/src/build/CMakeFiles/progress.marks b/customdhcpcd/src/build/CMakeFiles/progress.marks
new file mode 100644
index 0000000..3c03207
--- /dev/null
+++ b/customdhcpcd/src/build/CMakeFiles/progress.marks
@@ -0,0 +1 @@
+18
diff --git a/customdhcpcd/src/build/Makefile b/customdhcpcd/src/build/Makefile
new file mode 100644
index 0000000..67b4550
--- /dev/null
+++ b/customdhcpcd/src/build/Makefile
@@ -0,0 +1,609 @@
+# CMAKE generated file: DO NOT EDIT!
+# Generated by "Unix Makefiles" Generator, CMake Version 2.8
+
+# 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 top-level source directory on which CMake was run.
+CMAKE_SOURCE_DIR = /home/niklas/fbgui/customdhcpcd/src
+
+# The top-level build directory on which CMake was run.
+CMAKE_BINARY_DIR = /home/niklas/fbgui/customdhcpcd/src/build
+
+#=============================================================================
+# Targets provided globally by CMake.
+
+# Special rule for the target edit_cache
+edit_cache:
+ @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..."
+ /usr/bin/cmake -i .
+.PHONY : edit_cache
+
+# Special rule for the target edit_cache
+edit_cache/fast: edit_cache
+.PHONY : edit_cache/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
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles/progress.marks
+ $(MAKE) -f CMakeFiles/Makefile2 all
+ $(CMAKE_COMMAND) -E cmake_progress_start /home/niklas/fbgui/customdhcpcd/src/build/CMakeFiles 0
+.PHONY : all
+
+# The main clean target
+clean:
+ $(MAKE) -f CMakeFiles/Makefile2 clean
+.PHONY : clean
+
+# The main clean target
+clean/fast: clean
+.PHONY : clean/fast
+
+# Prepare targets for installation.
+preinstall: all
+ $(MAKE) -f CMakeFiles/Makefile2 preinstall
+.PHONY : preinstall
+
+# Prepare targets for installation.
+preinstall/fast:
+ $(MAKE) -f CMakeFiles/Makefile2 preinstall
+.PHONY : preinstall/fast
+
+# clear depends
+depend:
+ $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
+.PHONY : depend
+
+#=============================================================================
+# Target rules for targets named customdhcpcd
+
+# Build rule for target.
+customdhcpcd: cmake_check_build_system
+ $(MAKE) -f CMakeFiles/Makefile2 customdhcpcd
+.PHONY : customdhcpcd
+
+# fast build rule for target.
+customdhcpcd/fast:
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/build
+.PHONY : customdhcpcd/fast
+
+#=============================================================================
+# Target rules for targets named libcustomdhcpcd
+
+# Build rule for target.
+libcustomdhcpcd: cmake_check_build_system
+ $(MAKE) -f CMakeFiles/Makefile2 libcustomdhcpcd
+.PHONY : libcustomdhcpcd
+
+# fast build rule for target.
+libcustomdhcpcd/fast:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/build
+.PHONY : libcustomdhcpcd/fast
+
+CMakeFiles/CompilerIdC/CMakeCCompilerId.o: CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o
+.PHONY : CMakeFiles/CompilerIdC/CMakeCCompilerId.o
+
+# target to build an object file
+CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o
+.PHONY : CMakeFiles/CompilerIdC/CMakeCCompilerId.c.o
+
+CMakeFiles/CompilerIdC/CMakeCCompilerId.i: CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i
+.PHONY : CMakeFiles/CompilerIdC/CMakeCCompilerId.i
+
+# target to preprocess a source file
+CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i
+.PHONY : CMakeFiles/CompilerIdC/CMakeCCompilerId.c.i
+
+CMakeFiles/CompilerIdC/CMakeCCompilerId.s: CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s
+.PHONY : CMakeFiles/CompilerIdC/CMakeCCompilerId.s
+
+# target to generate assembly for a file
+CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s
+.PHONY : CMakeFiles/CompilerIdC/CMakeCCompilerId.c.s
+
+arp.o: arp.c.o
+.PHONY : arp.o
+
+# target to build an object file
+arp.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/arp.c.o
+.PHONY : arp.c.o
+
+arp.i: arp.c.i
+.PHONY : arp.i
+
+# target to preprocess a source file
+arp.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/arp.c.i
+.PHONY : arp.c.i
+
+arp.s: arp.c.s
+.PHONY : arp.s
+
+# target to generate assembly for a file
+arp.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/arp.c.s
+.PHONY : arp.c.s
+
+client.o: client.c.o
+.PHONY : client.o
+
+# target to build an object file
+client.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/client.c.o
+.PHONY : client.c.o
+
+client.i: client.c.i
+.PHONY : client.i
+
+# target to preprocess a source file
+client.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/client.c.i
+.PHONY : client.c.i
+
+client.s: client.c.s
+.PHONY : client.s
+
+# target to generate assembly for a file
+client.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/client.c.s
+.PHONY : client.c.s
+
+common.o: common.c.o
+.PHONY : common.o
+
+# target to build an object file
+common.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/common.c.o
+.PHONY : common.c.o
+
+common.i: common.c.i
+.PHONY : common.i
+
+# target to preprocess a source file
+common.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/common.c.i
+.PHONY : common.c.i
+
+common.s: common.c.s
+.PHONY : common.s
+
+# target to generate assembly for a file
+common.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/common.c.s
+.PHONY : common.c.s
+
+configure.o: configure.c.o
+.PHONY : configure.o
+
+# target to build an object file
+configure.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/configure.c.o
+.PHONY : configure.c.o
+
+configure.i: configure.c.i
+.PHONY : configure.i
+
+# target to preprocess a source file
+configure.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/configure.c.i
+.PHONY : configure.c.i
+
+configure.s: configure.c.s
+.PHONY : configure.s
+
+# target to generate assembly for a file
+configure.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/configure.c.s
+.PHONY : configure.c.s
+
+customdhcpcd.o: customdhcpcd.c.o
+.PHONY : customdhcpcd.o
+
+# target to build an object file
+customdhcpcd.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.o
+.PHONY : customdhcpcd.c.o
+
+customdhcpcd.i: customdhcpcd.c.i
+.PHONY : customdhcpcd.i
+
+# target to preprocess a source file
+customdhcpcd.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.i
+.PHONY : customdhcpcd.c.i
+
+customdhcpcd.s: customdhcpcd.c.s
+.PHONY : customdhcpcd.s
+
+# target to generate assembly for a file
+customdhcpcd.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/customdhcpcd.c.s
+.PHONY : customdhcpcd.c.s
+
+dhcp.o: dhcp.c.o
+.PHONY : dhcp.o
+
+# target to build an object file
+dhcp.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcp.c.o
+.PHONY : dhcp.c.o
+
+dhcp.i: dhcp.c.i
+.PHONY : dhcp.i
+
+# target to preprocess a source file
+dhcp.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcp.c.i
+.PHONY : dhcp.c.i
+
+dhcp.s: dhcp.c.s
+.PHONY : dhcp.s
+
+# target to generate assembly for a file
+dhcp.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcp.c.s
+.PHONY : dhcp.c.s
+
+dhcpcd.o: dhcpcd.c.o
+.PHONY : dhcpcd.o
+
+# target to build an object file
+dhcpcd.c.o:
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/dhcpcd.c.o
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.o
+.PHONY : dhcpcd.c.o
+
+dhcpcd.i: dhcpcd.c.i
+.PHONY : dhcpcd.i
+
+# target to preprocess a source file
+dhcpcd.c.i:
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/dhcpcd.c.i
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.i
+.PHONY : dhcpcd.c.i
+
+dhcpcd.s: dhcpcd.c.s
+.PHONY : dhcpcd.s
+
+# target to generate assembly for a file
+dhcpcd.c.s:
+ $(MAKE) -f CMakeFiles/customdhcpcd.dir/build.make CMakeFiles/customdhcpcd.dir/dhcpcd.c.s
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/dhcpcd.c.s
+.PHONY : dhcpcd.c.s
+
+discover.o: discover.c.o
+.PHONY : discover.o
+
+# target to build an object file
+discover.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/discover.c.o
+.PHONY : discover.c.o
+
+discover.i: discover.c.i
+.PHONY : discover.i
+
+# target to preprocess a source file
+discover.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/discover.c.i
+.PHONY : discover.c.i
+
+discover.s: discover.c.s
+.PHONY : discover.s
+
+# target to generate assembly for a file
+discover.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/discover.c.s
+.PHONY : discover.c.s
+
+duid.o: duid.c.o
+.PHONY : duid.o
+
+# target to build an object file
+duid.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/duid.c.o
+.PHONY : duid.c.o
+
+duid.i: duid.c.i
+.PHONY : duid.i
+
+# target to preprocess a source file
+duid.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/duid.c.i
+.PHONY : duid.c.i
+
+duid.s: duid.c.s
+.PHONY : duid.s
+
+# target to generate assembly for a file
+duid.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/duid.c.s
+.PHONY : duid.c.s
+
+info.o: info.c.o
+.PHONY : info.o
+
+# target to build an object file
+info.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/info.c.o
+.PHONY : info.c.o
+
+info.i: info.c.i
+.PHONY : info.i
+
+# target to preprocess a source file
+info.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/info.c.i
+.PHONY : info.c.i
+
+info.s: info.c.s
+.PHONY : info.s
+
+# target to generate assembly for a file
+info.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/info.c.s
+.PHONY : info.c.s
+
+interface.o: interface.c.o
+.PHONY : interface.o
+
+# target to build an object file
+interface.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/interface.c.o
+.PHONY : interface.c.o
+
+interface.i: interface.c.i
+.PHONY : interface.i
+
+# target to preprocess a source file
+interface.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/interface.c.i
+.PHONY : interface.c.i
+
+interface.s: interface.c.s
+.PHONY : interface.s
+
+# target to generate assembly for a file
+interface.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/interface.c.s
+.PHONY : interface.c.s
+
+ipv4ll.o: ipv4ll.c.o
+.PHONY : ipv4ll.o
+
+# target to build an object file
+ipv4ll.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.o
+.PHONY : ipv4ll.c.o
+
+ipv4ll.i: ipv4ll.c.i
+.PHONY : ipv4ll.i
+
+# target to preprocess a source file
+ipv4ll.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.i
+.PHONY : ipv4ll.c.i
+
+ipv4ll.s: ipv4ll.c.s
+.PHONY : ipv4ll.s
+
+# target to generate assembly for a file
+ipv4ll.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/ipv4ll.c.s
+.PHONY : ipv4ll.c.s
+
+logger.o: logger.c.o
+.PHONY : logger.o
+
+# target to build an object file
+logger.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logger.c.o
+.PHONY : logger.c.o
+
+logger.i: logger.c.i
+.PHONY : logger.i
+
+# target to preprocess a source file
+logger.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logger.c.i
+.PHONY : logger.c.i
+
+logger.s: logger.c.s
+.PHONY : logger.s
+
+# target to generate assembly for a file
+logger.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logger.c.s
+.PHONY : logger.c.s
+
+logwriter.o: logwriter.c.o
+.PHONY : logwriter.o
+
+# target to build an object file
+logwriter.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logwriter.c.o
+.PHONY : logwriter.c.o
+
+logwriter.i: logwriter.c.i
+.PHONY : logwriter.i
+
+# target to preprocess a source file
+logwriter.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logwriter.c.i
+.PHONY : logwriter.c.i
+
+logwriter.s: logwriter.c.s
+.PHONY : logwriter.s
+
+# target to generate assembly for a file
+logwriter.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/logwriter.c.s
+.PHONY : logwriter.c.s
+
+signal.o: signal.c.o
+.PHONY : signal.o
+
+# target to build an object file
+signal.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/signal.c.o
+.PHONY : signal.c.o
+
+signal.i: signal.c.i
+.PHONY : signal.i
+
+# target to preprocess a source file
+signal.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/signal.c.i
+.PHONY : signal.c.i
+
+signal.s: signal.c.s
+.PHONY : signal.s
+
+# target to generate assembly for a file
+signal.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/signal.c.s
+.PHONY : signal.c.s
+
+socket.o: socket.c.o
+.PHONY : socket.o
+
+# target to build an object file
+socket.c.o:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/socket.c.o
+.PHONY : socket.c.o
+
+socket.i: socket.c.i
+.PHONY : socket.i
+
+# target to preprocess a source file
+socket.c.i:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/socket.c.i
+.PHONY : socket.c.i
+
+socket.s: socket.c.s
+.PHONY : socket.s
+
+# target to generate assembly for a file
+socket.c.s:
+ $(MAKE) -f CMakeFiles/libcustomdhcpcd.dir/build.make CMakeFiles/libcustomdhcpcd.dir/socket.c.s
+.PHONY : socket.c.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 "... customdhcpcd"
+ @echo "... edit_cache"
+ @echo "... libcustomdhcpcd"
+ @echo "... rebuild_cache"
+ @echo "... CMakeFiles/CompilerIdC/CMakeCCompilerId.o"
+ @echo "... CMakeFiles/CompilerIdC/CMakeCCompilerId.i"
+ @echo "... CMakeFiles/CompilerIdC/CMakeCCompilerId.s"
+ @echo "... arp.o"
+ @echo "... arp.i"
+ @echo "... arp.s"
+ @echo "... client.o"
+ @echo "... client.i"
+ @echo "... client.s"
+ @echo "... common.o"
+ @echo "... common.i"
+ @echo "... common.s"
+ @echo "... configure.o"
+ @echo "... configure.i"
+ @echo "... configure.s"
+ @echo "... customdhcpcd.o"
+ @echo "... customdhcpcd.i"
+ @echo "... customdhcpcd.s"
+ @echo "... dhcp.o"
+ @echo "... dhcp.i"
+ @echo "... dhcp.s"
+ @echo "... dhcpcd.o"
+ @echo "... dhcpcd.i"
+ @echo "... dhcpcd.s"
+ @echo "... discover.o"
+ @echo "... discover.i"
+ @echo "... discover.s"
+ @echo "... duid.o"
+ @echo "... duid.i"
+ @echo "... duid.s"
+ @echo "... info.o"
+ @echo "... info.i"
+ @echo "... info.s"
+ @echo "... interface.o"
+ @echo "... interface.i"
+ @echo "... interface.s"
+ @echo "... ipv4ll.o"
+ @echo "... ipv4ll.i"
+ @echo "... ipv4ll.s"
+ @echo "... logger.o"
+ @echo "... logger.i"
+ @echo "... logger.s"
+ @echo "... logwriter.o"
+ @echo "... logwriter.i"
+ @echo "... logwriter.s"
+ @echo "... signal.o"
+ @echo "... signal.i"
+ @echo "... signal.s"
+ @echo "... socket.o"
+ @echo "... socket.i"
+ @echo "... socket.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:
+ $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
+.PHONY : cmake_check_build_system
+
diff --git a/customdhcpcd/src/build/cmake_install.cmake b/customdhcpcd/src/build/cmake_install.cmake
new file mode 100644
index 0000000..fc577be
--- /dev/null
+++ b/customdhcpcd/src/build/cmake_install.cmake
@@ -0,0 +1,44 @@
+# Install script for directory: /home/niklas/fbgui/customdhcpcd/src
+
+# Set the install prefix
+IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ SET(CMAKE_INSTALL_PREFIX "/usr/local")
+ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
+STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ IF(BUILD_TYPE)
+ STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ ELSE(BUILD_TYPE)
+ SET(CMAKE_INSTALL_CONFIG_NAME "")
+ ENDIF(BUILD_TYPE)
+ MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+
+# Set the component getting installed.
+IF(NOT CMAKE_INSTALL_COMPONENT)
+ IF(COMPONENT)
+ MESSAGE(STATUS "Install component: \"${COMPONENT}\"")
+ SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ ELSE(COMPONENT)
+ SET(CMAKE_INSTALL_COMPONENT)
+ ENDIF(COMPONENT)
+ENDIF(NOT CMAKE_INSTALL_COMPONENT)
+
+# Install shared libraries without execute permission?
+IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
+ SET(CMAKE_INSTALL_SO_NO_EXE "1")
+ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
+
+IF(CMAKE_INSTALL_COMPONENT)
+ SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+ELSE(CMAKE_INSTALL_COMPONENT)
+ SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+ENDIF(CMAKE_INSTALL_COMPONENT)
+
+FILE(WRITE "/home/niklas/fbgui/customdhcpcd/src/build/${CMAKE_INSTALL_MANIFEST}" "")
+FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES})
+ FILE(APPEND "/home/niklas/fbgui/customdhcpcd/src/build/${CMAKE_INSTALL_MANIFEST}" "${file}\n")
+ENDFOREACH(file)
diff --git a/customdhcpcd/src/build/customdhcpcd b/customdhcpcd/src/build/customdhcpcd
new file mode 100755
index 0000000..3023d80
--- /dev/null
+++ b/customdhcpcd/src/build/customdhcpcd
Binary files differ
diff --git a/customdhcpcd/src/build/liblibcustomdhcpcd.a b/customdhcpcd/src/build/liblibcustomdhcpcd.a
new file mode 100644
index 0000000..60737ed
--- /dev/null
+++ b/customdhcpcd/src/build/liblibcustomdhcpcd.a
Binary files differ
diff --git a/customdhcpcd/src/mk/cc.mk b/customdhcpcd/src/mk/cc.mk
deleted file mode 100644
index d52597b..0000000
--- a/customdhcpcd/src/mk/cc.mk
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-# Setup some good default CFLAGS
-CFLAGS?= -O2
-
-# Default to using the C99 standard
-CSTD?= c99
-_CSTD_SH= if test -n "${CSTD}"; then echo "-std=${CSTD}"; else echo ""; fi
-_CSTD!= ${_CSTD_SH}
-CFLAGS+= ${_CSTD}$(shell ${_CSTD_SH})
-
-# Try and use some good cc flags
-_CC_FLAGS= -pedantic -Wall -Wunused -Wimplicit -Wshadow -Wformat=2 \
- -Wmissing-declarations -Wno-missing-prototypes -Wwrite-strings \
- -Wbad-function-cast -Wnested-externs -Wcomment -Winline \
- -Wchar-subscripts -Wcast-align -Wno-format-nonliteral \
- -Wdeclaration-after-statement -Wsequence-point -Wextra
-_CC_FLAGS_SH= for f in ${_CC_FLAGS}; do \
- if ${CC} $$f -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
- then printf "%s" "$$f "; fi \
- done
-_CC_FLAGS!= ${_CC_FLAGS_SH}
-CFLAGS+= ${_CC_FLAGS}$(shell ${CC_FLAGS_SH})
diff --git a/customdhcpcd/src/mk/depend.mk b/customdhcpcd/src/mk/depend.mk
deleted file mode 100644
index a4d717a..0000000
--- a/customdhcpcd/src/mk/depend.mk
+++ /dev/null
@@ -1,11 +0,0 @@
-# This only works for make implementations that always include a .depend if
-# it exists. Only GNU make does not do this.
-
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-CLEANFILES+= .depend
-
-.depend: ${SRCS}
- ${CC} ${CFLAGS} -MM ${SRCS} > .depend
-
-depend: .depend
diff --git a/customdhcpcd/src/mk/dist.mk b/customdhcpcd/src/mk/dist.mk
deleted file mode 100644
index 1d3669d..0000000
--- a/customdhcpcd/src/mk/dist.mk
+++ /dev/null
@@ -1,11 +0,0 @@
-# rules to make a distribution tarball from a git repo
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-GITREF?= HEAD
-DISTPREFIX?= ${PROG}-${VERSION}
-DISTFILE?= ${DISTPREFIX}.tar.bz2
-
-CLEANFILES+= ${DISTFILE}
-
-dist:
- git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE}
diff --git a/customdhcpcd/src/mk/man.mk b/customdhcpcd/src/mk/man.mk
deleted file mode 100644
index 5d9bf26..0000000
--- a/customdhcpcd/src/mk/man.mk
+++ /dev/null
@@ -1,14 +0,0 @@
-# rules to install manpages
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-MANPREFIX?= /usr/share
-MANDIR?= ${MANPREFIX}/man/man
-MANMODE?= 0444
-MINSTALL?= ${INSTALL} -m ${MANMODE}
-
-man: ${MAN}
-
-# We cheat as all our pages go into section 8
-maninstall: man
- ${INSTALL} -d ${DESTDIR}${MANDIR}8
- for man in ${MAN}; do ${MINSTALL} $$man ${DESTDIR}${MANDIR}8; done
diff --git a/customdhcpcd/src/mk/os.mk b/customdhcpcd/src/mk/os.mk
deleted file mode 100644
index af173fc..0000000
--- a/customdhcpcd/src/mk/os.mk
+++ /dev/null
@@ -1,77 +0,0 @@
-# Setup OS specific variables
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-# Work out if we need -lresolv or not
-_LIBRESOLV_SH= printf '\#include <netinet/in.h>\n\#include <resolv.h>\nint main (void) { return (res_init ()); }\n' > .res_init.c; \
- if ${CC} .res_init.c -o .res_init >/dev/null 2>&1; then \
- echo ""; \
- elif ${CC} .res_init.c -lresolv -o .res_init >/dev/null 2>&1; then \
- echo "-lresolv"; \
- else \
- echo "Cannot work out how to get res_init to link" >&2; \
- rm -f .res_init.c .res_init; \
- exit 1; \
- fi; \
- rm -f .res_init.c .res_init
-_LIBRESOLV!= ${_LIBRESOLV_SH}
-LIBRESOLV= ${_LIBRESOLV}$(shell ${_LIBRESOLV_SH})
-
-# Work out if we need -lrt or not
-_LIBRT_SH= printf '\#include <time.h>\n\#include <unistd.h>\n\nint main (void) { struct timespec ts;\n\#if defined(_POSIX_MONOTONIC_CLOCK) && defined(CLOCK_MONOTONIC)\nreturn (clock_gettime (CLOCK_MONOTONIC, &ts));\n\#else\nreturn -1;\n\#endif\n}\n' > .clock_gettime.c; \
- if ${CC} .clock_gettime.c -o .clock_gettime >/dev/null 2>&1; then \
- echo ""; \
- elif ${CC} .clock_gettime.c -lrt -o .clock_gettime >/dev/null 2>&1; then \
- echo "-lrt"; \
- else \
- echo ""; \
- fi; \
- rm -f .clock_gettime.c .clock_gettime
-_LIBRT!= ${_LIBRT_SH}
-LIBRT= ${_LIBRT}$(shell ${_LIBRT_SH})
-
-# Work out if our fork() works or not
-_HAVE_FORK_SH= if test "${HAVE_FORK}" = "yes"; then \
- echo ""; \
- elif test -n "${HAVE_FORK}"; then \
- echo "-DTHERE_IS_NO_FORK"; \
- else \
- printf '\#include <stdlib.h>\n\#include <unistd.h>\nint main (void) { pid_t pid = fork(); if (pid == -1) exit (-1); exit (0); }\n' > .fork.c; \
- ${CC} .fork.c -o .fork >/dev/null 2>&1; \
- if ./.fork; then \
- echo ""; \
- else \
- echo "-DTHERE_IS_NO_FORK"; \
- fi; \
- rm -f .fork.c .fork; \
- fi;
-_HAVE_FORK!= ${_HAVE_FORK_SH}
-FORK= ${_HAVE_FORK}$(shell ${_HAVE_FORK_SH})
-
-# info dir defaults to /var/lib/dhcpcd on Linux and /var/db elsewhere
-_INFODIR_SH= if test -n "${INFODIR}"; then \
- echo "${INFODIR}"; \
- else \
- case `uname -s` in \
- Linux) echo "/var/lib/dhcpcd";; \
- *) echo "/var/db";; \
- esac \
- fi
-_INFODIR!= ${_INFODIR_SH}
-INFOD?= ${_INFODIR}$(shell ${_INFODIR_SH})
-
-# Work out how to restart services
-_RC_SH= if test -n "${HAVE_INIT}"; then \
- test "${HAVE_INIT}" = "no" || echo "-DENABLE_${HAVE_INIT}"; \
- elif test -x /sbin/runscript; then echo "-DENABLE_OPENRC"; \
- elif test -x /sbin/service; then echo "-DENABLE_SERVICE"; \
- elif test -x /etc/rc.d/rc.S -a -x /etc/rc.d/rc.M; then echo "-DENABLE_SLACKRC"; \
- elif test -d /etc/rc.d; then echo "-DENABLE_BSDRC"; \
- elif test -d /etc/init.d; then echo "-DENABLE_SYSV"; \
- fi
-_RC!= ${_RC_SH}
-RC= ${_RC}$(shell ${_RC_SH})
-
-# glibc requires _BSD_SOURCE and _XOPEN_SOURCE
-_DEF_SH= case `uname -s` in Linux) echo "-D_BSD_SOURCE -D_XOPEN_SOURCE=600";; *) echo;; esac
-_DEF!= ${_DEF_SH}
-CFLAGS+= ${_DEF}$(shell ${_DEF_SH})
diff --git a/customdhcpcd/src/mk/prog.mk b/customdhcpcd/src/mk/prog.mk
deleted file mode 100644
index 6f2560c..0000000
--- a/customdhcpcd/src/mk/prog.mk
+++ /dev/null
@@ -1,34 +0,0 @@
-# rules to build a program
-# based on FreeBSD's bsd.prog.mk
-
-# Copyright 2008 Roy Marples <roy@marples.name>
-
-BINDIR?= ${PREFIX}/usr/bin
-BINMODE?= 0755
-OBJS+= ${SRCS:.c=.o}
-
-INSTALL?= install
-
-all: ${PROG} ${MAN}
-
-${PROG}: ${SCRIPTS} ${OBJS}
- ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}
-
-_proginstall: ${PROG}
- ${INSTALL} -d ${DESTDIR}${BINDIR}
- ${INSTALL} -m ${BINMODE} ${PROG} ${DESTDIR}${BINDIR}
-
-include ${MK}/depend.mk
-include ${MK}/man.mk
-include ${MK}/dist.mk
-
-install: _proginstall maninstall
-
-clean:
- rm -f ${OBJS} ${PROG} ${CLEANFILES}
-
-LINTFLAGS?= -hx
-LINTFLAGS+= -X 159,247,352
-
-lint: ${SRCS:.c=.c}
- ${LINT} ${LINTFLAGS} ${CFLAGS:M-[DIU]*} $^ ${.ALLSRC}