diff options
author | Tim Potter <tpot@samba.org> | 2001-11-07 22:38:03 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-11-07 22:38:03 +0000 |
commit | 823ab98ae3671e3b9d3ad653c1d7bd3924b53ebf (patch) | |
tree | 4677bb4ae7edd31e3537f05d91121c23018eb5ca | |
parent | 5a91b271f6076f5c2972dfa4fcc41b800bba77b7 (diff) | |
download | samba-823ab98ae3671e3b9d3ad653c1d7bd3924b53ebf.tar.gz samba-823ab98ae3671e3b9d3ad653c1d7bd3924b53ebf.tar.bz2 samba-823ab98ae3671e3b9d3ad653c1d7bd3924b53ebf.zip |
Added delheaders as a dependency for clean.
(This used to be commit cd9334bd57cd7f544aba0b642c8190d608add7b9)
-rw-r--r-- | source3/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 615887389c..fd9e69096d 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -133,6 +133,8 @@ LIBMSRPC_OBJ = libsmb/cli_lsarpc.o libsmb/cli_samr.o libsmb/cli_spoolss.o \ libsmb/cli_reg.o \ rpc_client/cli_pipe.o libsmb/cli_pipe_util.o +LIBMSRPC_PICOBJ = $(LIBMSRPC_OBJ:.o=.po) + RPC_SERVER_OBJ = rpc_server/srv_lsa.o rpc_server/srv_lsa_nt.o \ rpc_server/srv_lsa_hnd.o rpc_server/srv_netlog.o rpc_server/srv_netlog_nt.o \ rpc_server/srv_pipe_hnd.o rpc_server/srv_reg.o rpc_server/srv_reg_nt.o \ @@ -667,6 +669,13 @@ bin/pam_smbpass.@SHLIBEXT@: $(PAM_SMBPASS_PICOOBJ) @echo "Linking shared library $@" $(LD) $(LDSHFLAGS) -symbolic -o $@ $(PAM_SMBPASS_PICOOBJ) -lpam $(LIBS) -lc +bin/libmsrpc.a: $(LIBMSRPC_PICOBJ) + -$(AR) -rc $@ $(LIBMSRPC_PICOBJ) + +bin/spamsync: rpcclient/samsync.o bin/libmsrpc.a + @$(LINK) -o $@ rpcclient/samsync.o bin/libmsrpc.a \ + $(UBIQX_OBJ) $(LIBS) + install: installbin installman installscripts installswat installdirs: @@ -711,7 +720,7 @@ uninstallbin: uninstallscripts: @$(SHELL) $(srcdir)/script/uninstallscripts.sh $(INSTALLPERMS) $(BINDIR) $(SCRIPTS) -clean: +clean: delheaders -rm -f core */*~ *~ */*.o */*.po */*.po32 */*.@SHLIBEXT@ $(PROGS) $(SPROGS) winbindd_proto: |