~ubuntu-branches/ubuntu/precise/luatex/precise

« back to all changes in this revision

Viewing changes to src/libs/luasocket/src/makefile.orig

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2008-07-07 11:01:13 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080707110113-1y7lam37zbbb7bbt
Tags: 0.28.0-1
* two new upstream releases, see the respective ANNOUCE files
* add luasocket license statement to debian/copyright
* activate the pdfluatex format
* prepare for latex based formats
  - add the ini files from TeX Live
  - add debian/formats file
  - adjust dh_installtex incantation
  the problem is that luatex dies when loading ukrhypmp.tex from 
  texlive-lang-cyrillic, but we don't want to conflict with it by now.
* policy 3.8.0, rename README.Debian-source to README.source, and add
  notes about quilt usage
* disable patch fix-pwd-inclusion (it was from svn)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#------
 
2
# Load configuration
 
3
#
 
4
include ../config
 
5
 
 
6
#------
 
7
# Hopefully no need to change anything below this line
 
8
#
 
9
 
 
10
#------
 
11
# Modules belonging to socket-core
 
12
#
 
13
 
 
14
#$(COMPAT)/compat-5.1.o \
 
15
 
 
16
SOCKET_OBJS:= \
 
17
        luasocket.o \
 
18
        timeout.o \
 
19
        buffer.o \
 
20
        io.o \
 
21
        auxiliar.o \
 
22
        options.o \
 
23
        inet.o \
 
24
        tcp.o \
 
25
        udp.o \
 
26
        except.o \
 
27
        select.o \
 
28
        usocket.o 
 
29
 
 
30
#------
 
31
# Modules belonging mime-core
 
32
#
 
33
#$(COMPAT)/compat-5.1.o \
 
34
 
 
35
MIME_OBJS:=\
 
36
        mime.o 
 
37
 
 
38
#------
 
39
# Modules belonging unix (local domain sockets)
 
40
#
 
41
UNIX_OBJS:=\
 
42
        buffer.o \
 
43
        auxiliar.o \
 
44
        options.o \
 
45
        timeout.o \
 
46
        io.o \
 
47
        usocket.o \
 
48
        unix.o
 
49
 
 
50
all: $(SOCKET_SO) $(MIME_SO) 
 
51
 
 
52
$(SOCKET_SO): $(SOCKET_OBJS)
 
53
        $(LD) $(LDFLAGS) -o $@ $(SOCKET_OBJS)
 
54
 
 
55
$(MIME_SO): $(MIME_OBJS)
 
56
        $(LD) $(LDFLAGS) -o $@ $(MIME_OBJS)
 
57
 
 
58
$(UNIX_SO): $(UNIX_OBJS)
 
59
        $(LD) $(LDFLAGS) -o $@ $(UNIX_OBJS)
 
60
 
 
61
#------
 
62
# List of dependencies
 
63
#
 
64
auxiliar.o: auxiliar.c auxiliar.h
 
65
buffer.o: buffer.c buffer.h io.h timeout.h
 
66
except.o: except.c except.h
 
67
inet.o: inet.c inet.h socket.h io.h timeout.h usocket.h
 
68
io.o: io.c io.h timeout.h
 
69
luasocket.o: luasocket.c luasocket.h auxiliar.h except.h timeout.h \
 
70
  buffer.h io.h inet.h socket.h usocket.h tcp.h udp.h select.h
 
71
mime.o: mime.c mime.h
 
72
options.o: options.c auxiliar.h options.h socket.h io.h timeout.h \
 
73
  usocket.h inet.h
 
74
select.o: select.c socket.h io.h timeout.h usocket.h select.h
 
75
tcp.o: tcp.c auxiliar.h socket.h io.h timeout.h usocket.h inet.h \
 
76
  options.h tcp.h buffer.h
 
77
timeout.o: timeout.c auxiliar.h timeout.h
 
78
udp.o: udp.c auxiliar.h socket.h io.h timeout.h usocket.h inet.h \
 
79
  options.h udp.h
 
80
unix.o: unix.c auxiliar.h socket.h io.h timeout.h usocket.h options.h \
 
81
  unix.h buffer.h
 
82
usocket.o: usocket.c socket.h io.h timeout.h usocket.h
 
83
 
 
84
clean:
 
85
        rm -f $(SOCKET_SO) $(SOCKET_OBJS) 
 
86
        rm -f $(MIME_SO) $(UNIX_SO) $(MIME_OBJS) $(UNIX_OBJS)
 
87
 
 
88
#------
 
89
# End of makefile configuration
 
90
#