File: Makefile

package info (click to toggle)
libapache2-mod-auth-pgsql 2.0.3-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 132 kB
  • ctags: 99
  • sloc: ansic: 831; makefile: 46; sh: 36
file content (12 lines) | stat: -rw-r--r-- 273 bytes parent folder | download | duplicates (2)
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 *~