#------ # Load configuration # include ../config #------ # Hopefully no need to change anything below this line # #------ # Modules belonging to socket-core # SOCKET_OBJS:= \ $(COMPAT)/compat-5.1.o \ luasocket.o \ timeout.o \ buffer.o \ io.o \ auxiliar.o \ options.o \ inet.o \ tcp.o \ udp.o \ except.o \ select.o \ usocket.o #------ # Modules belonging mime-core # MIME_OBJS:=\ $(COMPAT)/compat-5.1.o \ mime.o #------ # Modules belonging unix (local domain sockets) # UNIX_OBJS:=\ buffer.o \ auxiliar.o \ options.o \ timeout.o \ io.o \ usocket.o \ unix.o all: $(SOCKET_SO) $(MIME_SO) $(SOCKET_SO): $(SOCKET_OBJS) $(LD) $(LDFLAGS) -o $@ $^ $(MIME_SO): $(MIME_OBJS) $(LD) $(LDFLAGS) -o $@ $^ $(UNIX_SO): $(UNIX_OBJS) $(LD) $(LDFLAGS) -o $@ $^ #------ # List of dependencies # auxiliar.o: auxiliar.c auxiliar.h buffer.o: buffer.c buffer.h io.h timeout.h except.o: except.c except.h inet.o: inet.c inet.h socket.h io.h timeout.h usocket.h io.o: io.c io.h timeout.h luasocket.o: luasocket.c luasocket.h auxiliar.h except.h timeout.h \ buffer.h io.h inet.h socket.h usocket.h tcp.h udp.h select.h mime.o: mime.c mime.h options.o: options.c auxiliar.h options.h socket.h io.h timeout.h \ usocket.h inet.h select.o: select.c socket.h io.h timeout.h usocket.h select.h tcp.o: tcp.c auxiliar.h socket.h io.h timeout.h usocket.h inet.h \ options.h tcp.h buffer.h timeout.o: timeout.c auxiliar.h timeout.h udp.o: udp.c auxiliar.h socket.h io.h timeout.h usocket.h inet.h \ options.h udp.h unix.o: unix.c auxiliar.h socket.h io.h timeout.h usocket.h options.h \ unix.h buffer.h usocket.o: usocket.c socket.h io.h timeout.h usocket.h clean: rm -f $(SOCKET_SO) $(SOCKET_OBJS) rm -f $(MIME_SO) $(UNIX_SO) $(MIME_OBJS) $(UNIX_OBJS) #------ # End of makefile configuration #