util-src/Makefile

Wed, 25 Nov 2009 23:45:45 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 25 Nov 2009 23:45:45 +0000
changeset 2222
81b4e738e4d3
parent 2022
9cbf4e8cb0ed
child 2319
8dca45e17438
permissions
-rw-r--r--

util.serialization: Correctly serialize tables with 'false' as a key, fixes an issue with rosters not saving (thanks mathias, Tobias)

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
987
d55ec60331e7 Makefiles, util.signal: Add lsignal library for catching POSIX signals
Matthew Wild <mwild1@gmail.com>
parents: 798
diff changeset
13 all: encodings.so hashes.so pposix.so signal.so
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14
993
b2e9456dc200 Makefiles: Add signal.so to install targets
Matthew Wild <mwild1@gmail.com>
parents: 987
diff changeset
15 install: encodings.so hashes.so pposix.so signal.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
1840
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
27 MACOSX_DEPLOYMENT_TARGET="10.3"; export MACOSX_DEPLOYMENT_TARGET;
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
28 $(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
29
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30
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
31 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
32 $(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
33 hashes.so: hashes.o
1840
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
34 MACOSX_DEPLOYMENT_TARGET="10.3";
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
35 export MACOSX_DEPLOYMENT_TARGET;
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
36 $(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
37
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
38 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
39 $(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
40 pposix.so: pposix.o
1840
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
41 MACOSX_DEPLOYMENT_TARGET="10.3";
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
42 export MACOSX_DEPLOYMENT_TARGET;
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
43 $(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
44
987
d55ec60331e7 Makefiles, util.signal: Add lsignal library for catching POSIX signals
Matthew Wild <mwild1@gmail.com>
parents: 798
diff changeset
45 lsignal.o: lsignal.c
d55ec60331e7 Makefiles, util.signal: Add lsignal library for catching POSIX signals
Matthew Wild <mwild1@gmail.com>
parents: 798
diff changeset
46 $(CC) $(CFLAGS) -I$(LUA_INCDIR) -c -o lsignal.o lsignal.c
d55ec60331e7 Makefiles, util.signal: Add lsignal library for catching POSIX signals
Matthew Wild <mwild1@gmail.com>
parents: 798
diff changeset
47 signal.so: lsignal.o
1840
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
48 MACOSX_DEPLOYMENT_TARGET="10.3";
0bca03aaa845 Makefile: Don't combine variable export with assignment for compatibility with other shells (thanks Filip)
Matthew Wild <mwild1@gmail.com>
parents: 993
diff changeset
49 export MACOSX_DEPLOYMENT_TARGET;
2022
9cbf4e8cb0ed util-src/Makefile: Add missing flags to building of util.signal
Matthew Wild <mwild1@gmail.com>
parents: 1840
diff changeset
50 $(LD) $(LFLAGS) -o signal.so lsignal.o -L$(LUA_LIBDIR) -llua$(LUA_SUFFIX)
987
d55ec60331e7 Makefiles, util.signal: Add lsignal library for catching POSIX signals
Matthew Wild <mwild1@gmail.com>
parents: 798
diff changeset
51

mercurial