aboutsummaryrefslogtreecommitdiff
path: root/pam_autopeer/Makefile
blob: 355ef35220e2d20ea47bd0bf35f4dc6333965cf6 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
CFLAGS = -fPIC -Wall -Wextra -Wno-unused-parameter
LDFLAGS = -shared

all: pam_autopeer.so

pam_autopeer.so: pam_autopeer.o
	$(CC) $(LDFLAGS) -o pam_autopeer.so pam_autopeer.c


clean:
	rm -f pam_autopeer.so pam_autopeer.o