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

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

ARCH=$(ARCH1)_$(ARCH2)

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

# application name
PACKAGE_NAME = libobjcpq

SUBPROJECTS = Library Test

-include GNUmakefile.preamble

include $(GNUSTEP_MAKEFILES)/aggregate.make

-include GNUmakefile.postamble

