summaryrefslogtreecommitdiff
path: root/sjauth/Makefile
blob: ef64147e4313854c430e8b05a30c5fff22c60949 (plain) (blame)
1
2
3
4
5
6
7
8
9
.PHONY: all clean

all: sjauth

sjauth: sjauth.c
	$(CC) -Wall -Wextra -pedantic -O3 -o sjauth sjauth.c $(shell pkg-config --libs libcurl) 

clean:
	rm sjauth