~ubuntu-branches/ubuntu/saucy/nut/saucy

« back to all changes in this revision

Viewing changes to server/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Quette
  • Date: 2005-10-07 23:35:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051007233555-yreo209eww1bo665
Tags: 2.0.2-2
* debian/nut-cgi.postinst: load confmodule
* debian/nut-hidups/*: remove this unneeded directory
* debian/control:
  - Update build dependency from libsnmp5-dev to libsnmp9-dev (closes:
  #326410)
  - Changes nut-usb wrong dependency from libusb-dev to libusb-0.1-4 (closes:
  #320315)
  - add debconf (>= 0.5.00) and adduser to nut/nut-cgi Depends
* debian/copyright: update the FSF address and the Authors
* debian/po/vi.po: add the Vietnamese translation for debconf, from Clytie
  Siddall ((closes: #316327)

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
NETLIBS = @NETLIBS@
14
14
LIBOBJ  = @LIBOBJ@
15
15
STRLCPY = @STRLCPY@
16
 
UPSDOBJ = upsd.o user.o conf.o ssl.o sstate.o access.o oldnet.o netget.o \
17
 
                netlist.o netset.o netinstcmd.o desc.o ../common/state.o \
18
 
                ../common/upsconf.o ../common/parseconf.o
 
16
 
 
17
NETOBJ  = netget.o netmisc.o netlist.o netuser.o netset.o netinstcmd.o
 
18
UPSDOBJ = upsd.o user.o conf.o ssl.o sstate.o access.o $(NETOBJ) \
 
19
                desc.o ../common/state.o ../common/upsconf.o \
 
20
                ../common/parseconf.o
19
21
 
20
22
SSL_CFLAGS  = @SSL_CFLAGS@
21
23
SSL_LDFLAGS = @SSL_LDFLAGS@
25
27
 
26
28
all: $(PROGS)
27
29
 
28
 
upsd: $(UPSDOBJ) ../include/shared.h ../include/shared-tables.h $(LIBOBJ)
29
 
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -o upsd $(UPSDOBJ) $(NETLIBS) $(LIBOBJ) $(SSL_LDFLAGS)
 
30
upsd: $(UPSDOBJ) $(LIBOBJ)
 
31
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -o upsd $(UPSDOBJ) \
 
32
                $(NETLIBS) $(LIBOBJ) $(SSL_LDFLAGS)
30
33
 
31
34
upsd.o: upsd.c
32
35
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c upsd.c
40
43
netget.o: netget.c
41
44
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netget.c
42
45
 
 
46
netmisc.o: netmisc.c
 
47
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netmisc.c
 
48
 
 
49
netlist.o: netlist.c
 
50
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netlist.c
 
51
 
 
52
netuser.o: netuser.c
 
53
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netuser.c
 
54
 
43
55
netset.o: netset.c
44
56
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netset.c
45
57
 
46
 
netlist.o: netlist.c
47
 
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netlist.c
48
 
 
49
58
netinstcmd.o: netinstcmd.c
50
59
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c netinstcmd.c
51
60
 
52
 
oldnet.o: oldnet.c
53
 
        $(CC) $(CFLAGS) $(SSL_CFLAGS) -c oldnet.c
54
 
 
55
61
sockdebug: sockdebug.c
56
62
        $(CC) $(CFLAGS) -o sockdebug sockdebug.c $(LIBOBJ) ../common/parseconf.o
57
63