From 2397764dd0e5efa2b613fd22f6bf9c183d07160b Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Wed, 7 Dec 2011 19:01:29 +0100 Subject: renamed library, reordered Makefile --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8272d2c..d8858a4 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,15 @@ -TARGET:=libts3db_own.so +TARGET:=libts3db_postgres.so TOP:=. +#32BIT=-m32 +#DEBUG=-g + headers:=$(wildcard ${TOP}/*.h) sources:=$(wildcard ${TOP}/*.c) deps:=$(sources:.c=.d) objects:=$(sources:.c=.o) - -#32BIT=-m32 -CFLAGS=-fPIC $(32BIT) -g -std=c99 +CFLAGS=-fPIC $(32BIT) $(DEBUG) -std=c99 CFLAGS+=-I$(shell pg_config --includedir) LDFLAGS=-shared -Wl,-soname,$(TARGET) $(32BIT) -lpq -liniparser -- cgit v1.2.3