#/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#/* 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
TOOL_NAME = testobjcpq

$(TOOL_NAME)_HEADER_FILES =
$(TOOL_NAME)_OBJC_FILES = main.m
$(TOOL_NAME)_C_FILES =

-include GNUmakefile.preamble

include $(GNUSTEP_MAKEFILES)/tool.make

-include GNUmakefile.postamble

