#############################################################################
#
# $Id: Gmakefile,v 1.3 2002/04/15 13:26:30 glynn Exp $
#
# MODULE:   	GRASS gis library - NULL test
# AUTHOR(S):	Justin Hickey - Thailand - jhickey@hpcc.nectec.or.th
# PURPOSE:  	To create the test program for testing NULL values in GRASS
# COPYRIGHT:    (C) 2000 by the GRASS Development Team
#
#               This program is free software under the GNU General Public
#   	    	License (>=v2). Read the file COPYING that comes with GRASS
#   	    	for details.
#
#############################################################################

PGM = nullTest
OBJ = main.o
SOURCES = main.c

LIBES = $(GISLIB)
DEPLIBS= $(DEPGISLIB)

$(PGM): $(OBJ) $(DEPLIBS)
	$(CC) $(LDFLAGS) -o $@ $(OBJ) $(LIBES) $(XDRLIB)

$(DEPGISLIB): #
