diff options
| author | 2013-12-13 00:44:17 +0100 | |
|---|---|---|
| committer | 2013-12-13 00:44:17 +0100 | |
| commit | a798afc8b5b00a43f4b121168e0419df2d398338 (patch) | |
| tree | c178d7a149028944254511d03f91266ca43cfcbd /libcnary | |
| parent | 3b7647499474619b3e24bf01105b6b037887a0ed (diff) | |
| download | libplist-a798afc8b5b00a43f4b121168e0419df2d398338.tar.gz libplist-a798afc8b5b00a43f4b121168e0419df2d398338.tar.bz2 | |
change build system to autotools
Diffstat (limited to 'libcnary')
| -rw-r--r-- | libcnary/CMakeLists.txt | 16 | ||||
| -rw-r--r-- | libcnary/Makefile | 21 | ||||
| -rw-r--r-- | libcnary/Makefile.am | 18 |
3 files changed, 18 insertions, 37 deletions
diff --git a/libcnary/CMakeLists.txt b/libcnary/CMakeLists.txt deleted file mode 100644 index bbbe8ce..0000000 --- a/libcnary/CMakeLists.txt +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | cmake_minimum_required(VERSION 2.6) | ||
| 2 | |||
| 3 | SET(libcnary_SRC | ||
| 4 | iterator.c | ||
| 5 | list.c | ||
| 6 | node.c | ||
| 7 | node_iterator.c | ||
| 8 | node_list.c ) | ||
| 9 | |||
| 10 | INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include) | ||
| 11 | |||
| 12 | SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") | ||
| 13 | ADD_LIBRARY(libcnary STATIC ${libcnary_SRC}) | ||
| 14 | |||
| 15 | SET_TARGET_PROPERTIES(libcnary PROPERTIES OUTPUT_NAME cnary) | ||
| 16 | |||
diff --git a/libcnary/Makefile b/libcnary/Makefile deleted file mode 100644 index bdd165d..0000000 --- a/libcnary/Makefile +++ /dev/null | |||
| @@ -1,21 +0,0 @@ | |||
| 1 | TARGET = cnary | ||
| 2 | LIBRARY = libcnary.a | ||
| 3 | OBJECTS = cnary.o libcnary.a | ||
| 4 | LIBRARY_OBJECTS = node.o list.o iterator.o node_list.o node_iterator.o | ||
| 5 | CFLAGS=-g -I./include -I/opt/local/include -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk | ||
| 6 | LDFLAGS=-L/opt/local/lib -framework CoreFoundation -mmacosx-version-min=10.5 -arch i386 -isysroot /Developer/SDKs/MacOSX10.5.sdk -Wl,-no_compact_linkedit | ||
| 7 | |||
| 8 | |||
| 9 | %.o: %.c | ||
| 10 | $(CC) -o $(@) -c $(^) $(CFLAGS) | ||
| 11 | |||
| 12 | $(LIBRARY): $(LIBRARY_OBJECTS) | ||
| 13 | $(AR) rs $(@) $(^) | ||
| 14 | |||
| 15 | $(TARGET): $(OBJECTS) | ||
| 16 | $(CC) -o $(@) $(^) $(CFLAGS) $(LDFLAGS) | ||
| 17 | |||
| 18 | all: $(TARGET) | ||
| 19 | |||
| 20 | clean: | ||
| 21 | rm -rf $(TARGET) $(LIBRARY) $(OBJECTS) $(LIBRARY_OBJECTS) \ No newline at end of file | ||
diff --git a/libcnary/Makefile.am b/libcnary/Makefile.am new file mode 100644 index 0000000..ef61c31 --- /dev/null +++ b/libcnary/Makefile.am | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | AM_CFLAGS = $(GLOBAL_CFLAGS) -Iinclude | ||
| 2 | AM_LDFLAGS = | ||
| 3 | |||
| 4 | noinst_LTLIBRARIES = libcnary.la | ||
| 5 | libcnary_la_LIBADD = | ||
| 6 | libcnary_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined | ||
| 7 | libcnary_la_SOURCES = \ | ||
| 8 | node.c \ | ||
| 9 | list.c \ | ||
| 10 | node_list.c \ | ||
| 11 | iterator.c \ | ||
| 12 | node_iterator.c \ | ||
| 13 | include/node.h \ | ||
| 14 | include/list.h \ | ||
| 15 | include/node_list.h \ | ||
| 16 | include/iterator.h \ | ||
| 17 | include/node_iterator.h \ | ||
| 18 | include/object.h | ||
