diff options
author | Tim Potter <tpot@samba.org> | 2003-02-18 05:08:09 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-02-18 05:08:09 +0000 |
commit | 5a32a8491df9d81d54c3eb12e7b86abac7091bba (patch) | |
tree | 0bcb0e9d1f93c5777433309ec20d771e57ebcfa8 /source3 | |
parent | 8f9a17be892f87ab576f1824a7b6fe37abd59887 (diff) | |
download | samba-5a32a8491df9d81d54c3eb12e7b86abac7091bba.tar.gz samba-5a32a8491df9d81d54c3eb12e7b86abac7091bba.tar.bz2 samba-5a32a8491df9d81d54c3eb12e7b86abac7091bba.zip |
We don't use mkproto stuff for the python extensions anymore.
(This used to be commit 8d166ae093655a5a14a7478c7a84474b43e8ee97)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index c3b70f9986..bd41d9636c 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1067,35 +1067,6 @@ PYTHON_OBJS = $(LIB_OBJ) $(LIBSMB_OBJ) $(RPC_PARSE_OBJ) $(UBIQX_OBJ) \ $(PARAM_OBJ) $(LIBMSRPC_OBJ) $(PASSDB_OBJ) $(GROUPDB_OBJ) \ $(SECRETS_OBJ) $(KRBCLIENT_OBJ) -PY_SPOOLSS_PROTO_OBJ = python/py_spoolss.o \ - python/py_spoolss_printers.o python/py_spoolss_printers_conv.o\ - python/py_spoolss_forms.o python/py_spoolss_forms_conv.o \ - python/py_spoolss_ports.o python/py_spoolss_ports_conv.o \ - python/py_spoolss_drivers.o python/py_spoolss_drivers_conv.o \ - python/py_spoolss_jobs.o python/py_spoolss_jobs_conv.o \ - python/py_spoolss_printerdata.o - -PY_LSA_PROTO_OBJ = python/py_lsa.o - -PY_COMMON_PROTO_OBJ = python/py_common.c python/py_ntsec.c - -python_proto: python_spoolss_proto python_lsa_proto python_common_proto - -python_spoolss_proto: - @cd $(srcdir) && $(SHELL) script/mkproto.sh $(AWK) \ - -h _PY_SPOOLSS_PROTO_H python/py_spoolss_proto.h \ - $(PY_SPOOLSS_PROTO_OBJ) - -python_lsa_proto: - @cd $(srcdir) && $(SHELL) script/mkproto.sh $(AWK) \ - -h _PY_LSA_PROTO_H python/py_lsa_proto.h \ - $(PY_LSA_PROTO_OBJ) - -python_common_proto: - @cd $(srcdir) && $(SHELL) script/mkproto.sh $(AWK) \ - -h _PY_COMMON_PROTO_H python/py_common_proto.h \ - $(PY_COMMON_PROTO_OBJ) - python_ext: $(PYTHON_OBJS) @if test -z "$(PYTHON)"; then \ echo Use the option --with-python to configure python; \ |