blob: 8c1186354ab8699608d6c0624b13e599b4cff21d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# nthash - Generate NT Hash
CC := gcc
CFLAGS += $(shell pkg-config --cflags --libs nettle)
VERSION = $(shell git describe --tags --long)
all: nthash.c
$(CC) $(CFLAGS) -o nthash nthash.c
clean:
/bin/rm -f *.o *~ nthash
|