util-src/Makefile
author Tobias Markmann <tm@ayena.de>
Wed, 03 Dec 2008 20:32:03 +0100
changeset 534 684cd8aedc1a
parent 513 cadc9d6db7d8
child 536 dfe06eab47c0
permissions -rw-r--r--
Making makefile work under OS X finally. Yeah OS X's gcc is a little bit strange.
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
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    12
all: encodings.so hashes.so
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    13
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    14
install: encodings.so hashes.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:
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
    19
	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
    20
	rm -f ../util/*.so
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    21
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
    22
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
    23
	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
    24
encodings.so: encodings.o
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
	export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o encodings.so encodings.o -L/usr/local/lib -lcrypto -lidn
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
	
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    27
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
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
    29
	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
    30
hashes.so: hashes.o
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
	export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o hashes.so hashes.o -L/usr/local/lib -lcrypto -lssl
418
004c278154dc Add rough Makefile for util-src/
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
    32