]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/win32/dll/make_def
Set keyword replacement on files
[bacula/bacula] / bacula / src / win32 / dll / make_def
1 #!/bin/sh
2 #
3 #  Make the stupid bacula.def file so that we don't have to do it
4 #    manually
5 #
6 #  Kern Sibbald, June 2007
7 #
8  
9 echo "LIBRARY bacula.dll"
10 echo "EXPORTS"
11 echo " "
12
13 OBJS="compat.o print.o winapi.o attribs.o bfile.o create_file.o \
14       drivetype.o enable_priv.o find.o find_one.o fstype.o match.o \
15       address_conf.o alist.o attr.o base64.o berrno.o bget_msg.o \
16       bnet.o bnet_server.o bpipe.o breg.o bregex.o bsnprintf.o \
17       bsock.o bsys.o btime.o btimers.o cram-md5.o crc32.o crypto.o \
18       daemon.o dlist.o edit.o fnmatch.o idcache.o jcr.o lex.o md5.o \
19       mem_pool.o message.o pythonlib.o queue.o rblist.o runscript.o \
20       rwlock.o scan.o serial.o smartall.o tls.o tree.o util.o var.o \
21       watchdog.o"
22
23
24 for i in ${OBJS}; do \
25    echo "; $i"; \
26    nm $i | grep "^[0-9a-f]* T _" | cut -c21-; \
27    echo " "; \
28 done