aboutsummaryrefslogtreecommitdiff
path: root/ykpsmuttauth/Makefile
blob: bbaab9f306f06cc81bfb038d88d0da5cf2896d03 (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 `pkg-config --cflags --libs json-c` `pkg-config --cflags --libs libcurl` `pkg-config --cflags --libs openssl`

clean:
	rm -fv ykpsmuttauth ykpsmuttauth2