This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
|
CFLAGS= -I`pg_config --includedir`
|
|
LDFLAGS=-lpq
|
|
|
|
PROG= psql-useradm
|
|
OBJS= psql-useradm.o psqladm.o ../misc.o
|
|
|
|
${PROG}: ${OBJS}
|
|
gcc -o ${PROG} ${OBJS} ${LDFLAGS}
|
|
|
|
|