c-ipfs/multibase/Makefile

19 lines
259 B
Makefile
Raw Normal View History

2016-11-14 02:01:51 +00:00
CC = gcc
2019-01-02 17:01:30 +00:00
CFLAGS = -O0 -I../include -I../c-libp2p/include -I../c-libp2p/c-multihash/include -Wall -std=gnu99
2016-11-14 02:01:51 +00:00
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
OBJS = multibase.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o