head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	95.01.05.03.10.43;	author rjj;	state Exp;
branches;
next	;


desc
@Original GNUmakefile for the histogram modification algorithms.
@


1.1
log
@Initial revision
@
text
@# GNUmakefile          Section: 2.10 Histogram Modification
#      Copyright 1995, Center for Computer Vision and Visualization,
#      University of Florida.  All rights reserved.
#
# See comments in  gnumake.iah for description of symbols.

#######################################################################
# Modify the following symbols to control compilation
#######################################################################

#LOCALIACCVERSION	= iac++
#LOCALIAHVERSION	=
BLASTABLE_PTFILES	=
CLOSUREOBJS		=

HEADERS	= histo-mod.h
LOBJS	=

SOURCES	= histo-mod.h histo-mod.c  test-histo-mod.c
TESTS	= test-histo-mod

ARL		=
EXTRAINCLUDES	=
CPPFLAGS	=

OUTPUT_OPTION	=
TARGET_ARCH	=
XTRAFLAGS	=
XTRACCFLAGS	=

# Make this nothing if you do not want programs stripped.
STRIPPROGRAMS = anystring-means-strip--no-string-means-do-not-strip

#######################################################################
include ../../gnumake.iah
#######################################################################

#######################################################################
#####	User program dependencies and rules follow
#######################################################################

ifeq (${LIBTEST},)

histo-mod.o:	histo-mod.h histo-mod.c

test-histo-mod.o:	test-histo-mod.c  histo-mod.h

test-histo-mod:	test-histo-mod.o  histo-mod.o
	${LINK.cc} -o $@@ $@@.o histo-mod.o ${LDLIBS}
	strip $@@

else

test-histo-mod.o:	test-histo-mod.c

endif
@
