aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 7473a935668c0ec0414c786a958e97ce84fa4f1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC = cc
CFLAGS = -g
LDLIBS = -luriparser -lssl -lcrypto

all: totp
totp: main.o b32.o
	${CC} ${LDLIBS} -o $@ main.o b32.o

main.o: main.c b32.h
	${CC} ${CFLAGS} -c main.c

b32.o: b32.c b32.h
	${CC} ${CFLAGS} -c b32.c

clean:
	rm -f totp *.o