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

all: sjauth

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

clean:
	rm sjauth