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.
2010-05-11 15:59:30 +02:00
|
|
|
CFLAGS= -I`pg_config --includedir`
|
|
|
|
LDFLAGS=-lpq
|
2007-02-13 21:57:45 +01:00
|
|
|
|
|
|
|
PROG= psql-useradm
|
2010-05-11 15:59:30 +02:00
|
|
|
OBJS= psql-useradm.o psqladm.o ../misc.o
|
2007-02-13 21:57:45 +01:00
|
|
|
|
2010-05-11 15:59:30 +02:00
|
|
|
${PROG}: ${OBJS}
|
|
|
|
gcc -o ${PROG} ${OBJS} ${LDFLAGS}
|
2007-02-13 21:57:45 +01:00
|
|
|
|
|
|
|
|