blob: 618bd7d82b95e991b9995aa3fa0c34ae25ec2894 (
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 $@ $< $(shell pkg-config --cflags --libs json-c) $(shell pkg-config --cflags --libs libcurl) $(shell pkg-config --cflags --libs openssl)
clean:
rm -fv ykpsmuttauth ykpsmuttauth2
|