File: Makefile

package info (click to toggle)
pam-http 3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 88 kB
  • ctags: 13
  • sloc: ansic: 133; makefile: 57
file content (8 lines) | stat: -rw-r--r-- 243 bytes parent folder | download
1
2
3
4
5
6
7
8
CFLAGS += -Werror -Wall
all: check_user pam_http.so
clean:
	$(RM) check_user pam_http.so *.o
pam_http.so: pam_http.c
	$(CC) $(CFLAGS) -fPIC -shared -Xlinker -x -o $@ $< -lcurl
check_user: check_user.c
	$(CC) $(CFLAGS) -o $@ $< -lpam -lpam_misc