blob: ce6e57708043485005c89b5fabc673abdc29892f (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# nthash - Generate NT Hash
CC := gcc
ECHO := echo
GREP := grep
INSTALL := install
RM := rm
CFLAGS += -O2 -Wall -Werror
CFLAGS += $(shell pkg-config --cflags --libs nettle)
VERSION = $(shell git describe --tags --long)
all: nthash.c
$(CC) $(CFLAGS) -o nthash nthash.c
check:
$(ECHO) -n "testing123" | ./nthash | \
$(GREP) '^3e678b266d1d449e531e92bec33b6d27$$'
install:
$(INSTALL) -D -m0755 nthash $(DESTDIR)/usr/bin/nthash
clean:
$(RM) -f *.o *~ nthash
|