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


1.3
date	95.01.04.06.41.10;	author rjj;	state Exp;
branches;
next	1.2;

1.2
date	94.08.27.18.54.13;	author rjj;	state Exp;
branches;
next	1.1;

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


desc
@Initial version of the Salt-and-Pepper noise removal algorithm.
@


1.3
log
@Corrected spelling of stripped.
Added support of LIBTEST
@
text
@# GNUmakefile          Section: 5.4, Salt-and-Pepper Noise Removal
#      Copyright 1994, 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
#######################################################################

BLASTABLE_PTFILES =
CLOSUREOBJS       =

HEADERS = snp.h
LOBJS   = snp.o

SOURCES	= snp.h snp.c  test-snp.c
TESTS	= test-snp

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},)
snp.o:	snp.h snp.c

test-snp:	test-snp.c snp.o
	${LINK.cc} -o $@@ $@@.o snp.o ${LDLIBS}
	strip $@@
else
test-snp.o:	test-snp.c
endif
@


1.2
log
@Removed TOP, general cleanup.
@
text
@d29 1
a29 1
# Make this nothing if you do not want programs striped.
d41 2
d46 5
@


1.1
log
@Initial revision
@
text
@d1 4
a4 2
# Sample GNUMakefile to be used to compile the IAH algorithms.
# Initial revision
a10 3
TOP = /cis/homes/rjj/iacc/iah-src
IACCVERSION = iac++

d17 2
a18 1
SIMPLETESTS =
d34 1
a34 3

include ${TOP}/gnumake.iah

a36 2


d41 1
a41 10
# Use the following approach when you need to specify the .o files for a target

# sobel_edge: sobel_edge1.o sobel_edge2.o
#	$(LINK.cc) -o sobel_edge sobel_edge.o sobel_edge2.o $(LDLIBS)


HANDBOOK =

TESTS = test-snp

d43 1
a43 1
tests: $(TESTS)
@
