summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/Makefile.in19
1 files changed, 11 insertions, 8 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in
index 4cfcbbe585..5614edf50e 100644
--- a/source3/Makefile.in
+++ b/source3/Makefile.in
@@ -1414,23 +1414,26 @@ modules:: SHOWFLAGS $(MODULES)
#####################################################################
## Perl IDL Compiler
+
+IDL_FILES = librpc/idl/messaging.idl \
+ librpc/idl/libnetapi.idl \
+ librpc/idl/notify.idl \
+ librpc/idl/wbint.idl \
+ librpc/idl/perfcount.idl \
+ librpc/idl/secrets.idl \
+ librpc/idl/libnet_join.idl
+
samba3-idl::
@PIDL_OUTPUTDIR="librpc/gen_ndr" PIDL_ARGS="$(PIDL_ARGS)" CPP="$(CPP)" PIDL="../pidl/pidl" \
srcdir="$(srcdir)" ../librpc/build_idl.sh ../librpc/idl/*.idl
@PIDL_OUTPUTDIR="librpc/gen_ndr" PIDL_ARGS="$(PIDL_ARGS)" CPP="$(CPP)" PIDL="../pidl/pidl" \
- srcdir="$(srcdir)" $(srcdir)/script/build_idl.sh \
- librpc/idl/messaging.idl librpc/idl/libnetapi.idl librpc/idl/notify.idl \
- librpc/idl/wbint.idl librpc/idl/perfcount.idl \
- librpc/idl/secrets.idl librpc/idl/libnet_join.idl
+ srcdir="$(srcdir)" $(srcdir)/script/build_idl.sh $(IDL_FILES)
idl_full::
@PIDL_OUTPUTDIR="librpc/gen_ndr" PIDL_ARGS="$(PIDL_ARGS)" CPP="$(CPP)" PIDL="../pidl/pidl" \
srcdir="$(srcdir)" ../librpc/build_idl.sh --full ../librpc/idl/*.idl
@PIDL_OUTPUTDIR="librpc/gen_ndr" PIDL_ARGS="$(PIDL_ARGS)" CPP="$(CPP)" PIDL="../pidl/pidl" \
- srcdir="$(srcdir)" $(srcdir)/script/build_idl.sh --full \
- librpc/idl/messaging.idl librpc/idl/libnetapi.idl librpc/idl/notify.idl \
- librpc/idl/wbint.idl librpc/idl/perfcount.idl \
- librpc/idl/secrets.idl librpc/idl/libnet_join.idl
+ srcdir="$(srcdir)" $(srcdir)/script/build_idl.sh --full $(IDL_FILES)
#####################################################################