1#
2# Makefile for psec utility
3#
4
5#
6# NOTE: Samba must be configured with the --srcdir option before this Makefile
7# will work: ./configure --srcdir=`pwd`
8#
9# Compile with: make -f Makefile.psec psec
10#
11
12psec_default: psec
13
14include ../../source/Makefile
15
16PSEC_OBJ1 = $(LIB_OBJ) $(PARAM_OBJ) $(UBIQX_OBJ) $(RPC_PARSE_OBJ) \
17	$(LIBSMB_OBJ) $(PASSDB_OBJ) $(RPC_CLIENT_OBJ)
18
19PSEC_OBJS = $(PSEC_OBJ1:%=$(srcdir)/%)
20
21psec: $(PSEC_OBJS) psec.o
22	$(CC) -o $@ psec.o $(PSEC_OBJS) $(LIBS)
23