#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#/* Project:     PostgreSQL binding                                           */
#/* Author:      Alexander Diemand                                            */
#/* Created:     2002-01-26                                                   */
#/* Description: Top Makefile                                                 */
#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


ARCH1=$(shell uname -s)
ARCH2=$(shell uname -m)

ARCH=$(ARCH1)_$(ARCH2)

# load GNUstep stuff
include $(GNUSTEP_MAKEFILES)/common.make

# library name
LIBRARY_NAME = libobjcpq

$(LIBRARY_NAME)_HEADER_FILES = PostgreSQL.oh
$(LIBRARY_NAME)_OBJC_FILES = PostgreSQL.m
$(LIBRARY_NAME)_C_FILES =

-include GNUmakefile.preamble

include $(GNUSTEP_MAKEFILES)/library.make

-include GNUmakefile.postamble

