Added command ipfs dns

This commit is contained in:
Jose Marcial Vieira Bisneto 2016-12-23 00:51:06 -03:00
parent 5f22be643c
commit a569159cc2
8 changed files with 114 additions and 2 deletions

18
path/Makefile Normal file
View file

@ -0,0 +1,18 @@
CC = gcc
CFLAGS = -O0 -I../include -I../../c-libp2p/include -I../../c-multihash/include -I../../c-multiaddr/include -I../../c-protobuf -Wall
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
OBJS = path.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o