This repository has been archived on 2026-09-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
golem-v0-tinycbor/tools/Makefile
T
Otavio Pontes e73e4d87be Add missing dependencies to cbordump build
Compilation was failing when trying to compile cbordump running make in
tools directory. Add missing dependencies, cbortojson and
cborparser_dup_string to cbordump Makefile.

Signed-off-by: Otavio Pontes <otavio.pontes@intel.com>
Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
2016-07-11 08:45:15 -07:00

13 lines
251 B
Makefile

CFLAGS = -O2 -g
CPPFLAGS = -I../src
VPATH = cbordump:../src
all: ../bin ../bin/cbordump
../bin:
@-mkdir ../bin
../bin/cbordump: cbordump.o cborparser.o cborparser_dup_string.o cbortojson.o cborerrorstrings.o cborpretty.o
$(CC) -o $@ $^
$(RM) $^