nostril/Makefile
William Casarin 98b712700b fix makefile
Signed-off-by: William Casarin <jb55@jb55.com>
2022-04-14 08:14:13 -07:00

27 lines
523 B
Makefile

OBJS = sha256.o nostril.o
HEADERS = hex.h random.h config.h sha256.h
all: nostril
%.o: %.c config.h
@echo "cc $<"
@$(CC) -c $< -o $@
nostril: $(HEADERS) $(OBJS)
$(CC) $(OBJS) -lsecp256k1 -o $@
config.h: configurator
./configurator > $@
configurator: configurator.c
$(CC) $< -o $@
clean:
rm -f nostril *.o
tags: fake
ctags *.c *.h
.PHONY: fake