diff options
Diffstat (limited to 'libcnary/Makefile')
| -rw-r--r-- | libcnary/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libcnary/Makefile b/libcnary/Makefile new file mode 100644 index 0000000..bdd165d --- /dev/null +++ b/libcnary/Makefile | |||
| @@ -0,0 +1,21 @@ | |||
| 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 | ||
