Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore6
-rw-r--r--CMakeLists.txt21
-rw-r--r--Makefile41
3 files changed, 27 insertions, 41 deletions
diff --git a/.gitignore b/.gitignore
index 9784b6a..268e7f6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,8 @@
+Makefile
+CMakeCache.txt
+CMakeFiles
+*.cmake
+*.a
*.so
*.dylib
+install_manifest.txt
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..e307cd7
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,21 @@
+cmake_minimum_required(VERSION 2.8)
+
+PROJECT(ubox C)
+ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3)
+
+SET(SOURCES avl.c blob.c blobmsg.c hash.c uhtbl.c uloop.c)
+IF("${CMAKE_SYSTEM}" MATCHES "Linux")
+ SET(SOURCES ${SOURCES} unl.c)
+ENDIF("${CMAKE_SYSTEM}" MATCHES "Linux")
+
+ADD_LIBRARY(ubox SHARED ${SOURCES})
+
+SET(CMAKE_INSTALL_PREFIX /usr)
+
+FILE(GLOB headers *.h)
+INSTALL(FILES ${headers}
+ DESTINATION include/libubox
+)
+INSTALL(TARGETS ubox
+ LIBRARY DESTINATION lib
+)
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 996d6a6..0000000
--- a/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-CC?=gcc
-CFLAGS?=-O2
-CFLAGS+=-std=gnu99 -Wall -Werror -pedantic -fpic
-LDFLAGS?=
-LIBNL=-lnl-tiny
-PREFIX=/usr
-INCLUDE_DIR=$(PREFIX)/include/libubox
-LIBDIR=$(PREFIX)/lib
-CPPFLAGS=
-
-OS=$(shell uname)
-FILES=blob.c blobmsg.c hash.c uhtbl.c usock.c uloop.c avl.c
-ifeq ($(OS),Linux)
- FILES += unl.c
- LIBS += $(LIBNL)
- LDFLAGS_SHARED=-shared -Wl,-soname,$@
- SHLIB_EXT=so
-endif
-ifeq ($(OS),Darwin)
- LDFLAGS_SHARED=-dynamiclib
- SHLIB_EXT=dylib
-endif
-
-all: libubox.$(SHLIB_EXT)
-
-libubox.$(SHLIB_EXT): $(FILES)
- $(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) $(LDFLAGS_SHARED)
-
-install-headers:
- mkdir -p $(INCLUDE_DIR)
- cp *.h $(INCLUDE_DIR)/
-
-install-lib:
- mkdir -p $(LIBDIR)
- cp libubox.$(SHLIB_EXT) $(LIBDIR)/
-
-install: install-lib install-headers
-
-clean:
- rm -f *.$(SHLIB_EXT)
-