mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
f9680a444b
- merged Tim's vlp (virtual lp) test program. Enable it with
-DDEVELOPER or by using ./configure.developer
(source/include/smb.h source/configure.developer
source/printing/lpq_parse.c source/param/loadparm.c
testsuite/printing/.cvsignore testsuite/printing/Makefile.vlp
testsuite/printing/vlp.c)
(This used to be commit fbcf83140d
)
15 lines
231 B
Makefile
15 lines
231 B
Makefile
#
|
|
# Makefile for vlp utility
|
|
#
|
|
|
|
vlp_default: vlp
|
|
|
|
include ../../source/Makefile
|
|
|
|
VLP_OBJ1 = $(LIB_OBJ) $(PARAM_OBJ) $(UBIQX_OBJ)
|
|
|
|
VLP_OBJS = $(VLP_OBJ1:%=$(srcdir)/%)
|
|
|
|
vlp: $(VLP_OBJS) vlp.o
|
|
$(CC) -o $@ vlp.o $(VLP_OBJS) $(LIBS)
|