File: Makefile

package info (click to toggle)
libapache2-mod-auth-pgsql 2.0.3-6.1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, sid, stretch
  • size: 388 kB
  • ctags: 365
  • sloc: ansic: 3,261; makefile: 22
file content (12 lines) | stat: -rw-r--r-- 272 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
APACHE2_HOME=/usr
PGSQL_LIB=/usr/lib
PGSQL_INCLUDE=$(shell pg_config --includedir)

shared:
	${APACHE2_HOME}/bin/apxs2 -a -c -I ${PGSQL_INCLUDE} -L ${PGSQL_LIB} -lpq mod_auth_pgsql.c

indent:
	indent -kr -ts4 mod_auth_pgsql.c

clean:
	rm -rf .libs/ *.la *.o *.lo *.slo *~