util-src/Makefile
author Matthew Wild <mwild1@gmail.com>
Sun, 28 Dec 2008 05:09:38 +0000
changeset 663 69fe30ffc8c3
parent 586 b828d7d47973
child 765 148365c1b53c
permissions -rw-r--r--
Makefile fix for clean target
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
     9
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    10
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    11
586
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    12
all: encodings.so hashes.so pposix.so
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    13
586
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    14
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
    15
	install *.so ../util/
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    16
	
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
clean:
663
69fe30ffc8c3 Makefile fix for clean target
Matthew Wild <mwild1@gmail.com>
parents: 586
diff changeset
    19
	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
    20
	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
    21
	rm -f ../util/*.so
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    22
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
    23
encodings.o: encodings.c
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
	gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o encodings.o encodings.c
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
    25
encodings.so: encodings.o
537
c157c1412bda Fix Makefile to link with Lua again
Matthew Wild <mwild1@gmail.com>
parents: 536
diff changeset
    26
	export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o encodings.so encodings.o -L/usr/local/lib -llua$(LUA_SUFFIX) -lcrypto -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
    27
	
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    28
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
hashes.o: hashes.c
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
	gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o hashes.o hashes.c
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.so: hashes.o
537
c157c1412bda Fix Makefile to link with Lua again
Matthew Wild <mwild1@gmail.com>
parents: 536
diff changeset
    32
	export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o hashes.so hashes.o -L/usr/local/lib -llua$(LUA_SUFFIX) -lcrypto -lssl
586
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    33
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    34
pposix.o: pposix.c
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    35
	gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o pposix.o pposix.c
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    36
pposix.so: pposix.o
b828d7d47973 Add posix support library, and adjust makefiles for it
Matthew Wild <mwild1@gmail.com>
parents: 537
diff changeset
    37
	export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o pposix.so pposix.o -L/usr/local/lib -llua$(LUA_SUFFIX)
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    38