summaryrefslogtreecommitdiff
path: root/ykpsmuttauth/Makefile
blob: 53e46a37dc4f3580f584500eb2638326ae1b2c4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
.PHONY: clean

ykpsmuttauth: ykpsmuttauth.go
	go build

ykpsmuttauth2: ykpsmuttauth2.c
	$(CC) -Wall -Wextra -pedantic -o ykpsmuttauth2 ykpsmuttauth2.c $(shell pkg-config --cflags --libs json-c) $(shell pkg-config --cflags --libs libcurl) $(shell pkg-config --cflags --libs openssl)

clean:
	rm -fv ykpsmuttauth ykpsmuttauth2