Software /
code /
prosody
File
util-src/Makefile @ 2567:ca6ee2dac8d6
prosody: Add a catch-all friendly message for when any port is in use we want to use
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 05 Feb 2010 15:05:39 +0000 (2010-02-05) |
parent | 2319:8dca45e17438 |
child | 3334:73f078caf99d |
line wrap: on
line source
include ../config.unix LUA_SUFFIX?=5.1 LUA_INCDIR?=/usr/include/lua$(LUA_SUFFIX) LUA_LIB?=lua$(LUA_SUFFIX) IDN_LIB?=idn OPENSSL_LIB?=crypto CC?=gcc LD?=gcc .SUFFIXES: .c .o .so .c.o: $(CC) $(CFLAGS) -I$(LUA_INCDIR) -c -o $@ $< .o.so: MACOSX_DEPLOYMENT_TARGET="10.3"; export MACOSX_DEPLOYMENT_TARGET; $(LD) $(LDFLAGS) -o $@ $< -L$(LUA_LIBDIR) -llua$(LUA_SUFFIX) -lidn -lcrypto all: encodings.so hashes.so pposix.so signal.so install: encodings.so hashes.so pposix.so signal.so install *.so ../util/ clean: rm -f *.o rm -f *.so rm -f ../util/*.so