Software /
code /
prosody
Annotate
util-src/Makefile @ 798:2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 14 Feb 2009 15:38:37 +0000 |
parent | 765:148365c1b53c |
child | 987:d55ec60331e7 |
rev | line source |
---|---|
442
722f63c70a77
Makefile now works on windows with Microsoft's compiler
Waqas Hussain <waqas20@gmail.com>
parents:
418
diff
changeset
|
1 |
463
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
2 include ../config.unix |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
3 |
463
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
4 LUA_SUFFIX?=5.1 |
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
5 LUA_INCDIR?=/usr/include/lua$(LUA_SUFFIX) |
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
6 LUA_LIB?=lua$(LUA_SUFFIX) |
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
7 IDN_LIB?=idn |
511
f9ab28562fda
Potential fixes for building on Mac OSX
Matthew Wild <mwild1@gmail.com>
parents:
491
diff
changeset
|
8 OPENSSL_LIB?=crypto |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
9 CC?=gcc |
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
10 LD?=gcc |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
11 |
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
12 |
586
b828d7d47973
Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents:
537
diff
changeset
|
13 all: encodings.so hashes.so pposix.so |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
14 |
586
b828d7d47973
Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents:
537
diff
changeset
|
15 install: encodings.so hashes.so pposix.so |
534
684cd8aedc1a
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
Tobias Markmann <tm@ayena.de>
parents:
513
diff
changeset
|
16 install *.so ../util/ |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
17 |
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
18 |
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
19 clean: |
663
69fe30ffc8c3
Makefile fix for clean target
Matthew Wild <mwild1@gmail.com>
parents:
586
diff
changeset
|
20 rm -f *.o |
463
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
21 rm -f *.so |
a2452d3bd828
Add a top-level Makefile and ./configure script. Update util-src Makefile for this.
Matthew Wild <mwild1@gmail.com>
parents:
445
diff
changeset
|
22 rm -f ../util/*.so |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
23 |
534
684cd8aedc1a
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
Tobias Markmann <tm@ayena.de>
parents:
513
diff
changeset
|
24 encodings.o: encodings.c |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
25 $(CC) $(CFLAGS) -I$(LUA_INCDIR) -c -o encodings.o encodings.c |
534
684cd8aedc1a
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
Tobias Markmann <tm@ayena.de>
parents:
513
diff
changeset
|
26 encodings.so: encodings.o |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
27 export MACOSX_DEPLOYMENT_TARGET="10.3"; $(LD) $(LFLAGS) -o encodings.so encodings.o -L$(LUA_LIBDIR) -llua$(LUA_SUFFIX) -lidn |
534
684cd8aedc1a
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
Tobias Markmann <tm@ayena.de>
parents:
513
diff
changeset
|
28 |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
29 |
534
684cd8aedc1a
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
Tobias Markmann <tm@ayena.de>
parents:
513
diff
changeset
|
30 hashes.o: hashes.c |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
31 $(CC) $(CFLAGS) -I$(LUA_INCDIR) -c -o hashes.o hashes.c |
534
684cd8aedc1a
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
Tobias Markmann <tm@ayena.de>
parents:
513
diff
changeset
|
32 hashes.so: hashes.o |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
33 export MACOSX_DEPLOYMENT_TARGET="10.3"; $(LD) $(LFLAGS) -o hashes.so hashes.o -L$(LUA_LIBDIR) -llua$(LUA_SUFFIX) -lcrypto |
586
b828d7d47973
Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents:
537
diff
changeset
|
34 |
b828d7d47973
Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents:
537
diff
changeset
|
35 pposix.o: pposix.c |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
36 $(CC) $(CFLAGS) -I$(LUA_INCDIR) -c -o pposix.o pposix.c |
586
b828d7d47973
Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents:
537
diff
changeset
|
37 pposix.so: pposix.o |
798
2a92b58144a9
Use $CC, $LD in Makefile. Add --c-compiler, --linker flags to ./configure script. Add --lflags to ./configure script. Thanks to Lorenzo for the initial patch!
Matthew Wild <mwild1@gmail.com>
parents:
765
diff
changeset
|
38 export MACOSX_DEPLOYMENT_TARGET="10.3"; $(LD) $(LFLAGS) -o pposix.so pposix.o -L$(LUA_LIBDIR) -llua$(LUA_SUFFIX) |
418
004c278154dc
Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff
changeset
|
39 |