diff options
Diffstat (limited to 'testsuite/printing/Makefile.psec')
-rw-r--r-- | testsuite/printing/Makefile.psec | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/printing/Makefile.psec b/testsuite/printing/Makefile.psec new file mode 100644 index 0000000000..1410c9e009 --- /dev/null +++ b/testsuite/printing/Makefile.psec @@ -0,0 +1,22 @@ +# +# Makefile for psec utility +# + +# +# NOTE: Samba must be configured with the --srcdir option before this Makefile +# will work: ./configure --srcdir=`pwd` +# +# Compile with: make -f Makefile.psec psec +# + +psec_default: psec + +include ../../source/Makefile + +PSEC_OBJ1 = $(LIB_OBJ) $(PARAM_OBJ) $(UBIQX_OBJ) $(RPC_PARSE_OBJ) \ + $(LIBSMB_OBJ) $(PASSDB_OBJ) $(RPC_CLIENT_OBJ) + +PSEC_OBJS = $(PSEC_OBJ1:%=$(srcdir)/%) + +psec: $(PSEC_OBJS) psec.o + $(CC) -o $@ psec.o $(PSEC_OBJS) $(LIBS) |