Lines Matching full:c
29 src/cborerrorstrings.c \
30 src/cborencoder.c \
31 src/cborencoder_close_container_checked.c \
32 src/cborparser.c \
33 src/cborparser_dup_string.c \
34 src/cborpretty.c \
35 src/cborpretty_stdio.c \
36 src/cbortojson.c \
37 src/cborvalidation.c \
38 src/cbor_buf_reader.c \
39 src/cbor_buf_writer.c
41 CBORDUMP_SOURCES = tools/cbordump/cbordump.c
72 GIT_DIR := $(strip $(shell git -C $(SRCDIR). rev-parse --git-dir 2> /dev/null))
77 VERSION := $(shell git -C $(SRCDIR). describe --tags | cut -c2-)
79 test -n "`git -C $(SRCDIR). diff --name-only HEAD`" && \
107 TINYCBOR_SOURCES += src/open_memstream.c
113 JSON2CBOR_SOURCES = tools/json2cbor/json2cbor.c
118 JSON2CBOR_SOURCES += src/cjson/cJSON.c
130 $(MAKE) -C tests check
137 lib/libtinycbor.a: $(TINYCBOR_SOURCES:.c=.o)
141 lib/libtinycbor.so: $(TINYCBOR_SOURCES:.c=.pic.o)
146 bin/cbordump: $(CBORDUMP_SOURCES:.c=.o) $(BINLIBRARY)
150 bin/json2cbor: $(JSON2CBOR_SOURCES:.c=.o) $(BINLIBRARY)
191 $(RM) $(TINYCBOR_SOURCES:.c=.o)
192 $(RM) $(TINYCBOR_SOURCES:.c=.pic.o)
193 $(RM) $(CBORDUMP_SOURCES:.c=.o)
201 test -e tests/Makefile && $(MAKE) -C tests clean || :
204 test -e tests/Makefile && $(MAKE) -C tests distclean || :
212 …GIT_DIR=$(SRCDIR).git git archive --prefix=tinycbor-distcheck/ --format=tar HEAD | tar -xf - -C $$…
227 %.o: %.c
229 $(CC) $(cflags) $($(basename $(notdir $@))_CCFLAGS) -c -o $@ $<
230 %.pic.o: %.c
232 $(CC) $(cflags) -fPIC $($(basename $(notdir $@))_CCFLAGS) -c -o $@ $<