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


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

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

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


desc
@The generic, it should compile, but the IACCVERSION will
  probably have to be changed.
@


1.3
log
@Added standard header, support for LIBTEST.
@
text
@# GNUmakefile          Section: 11.4,
#                               Counting Connected Components by Shrinking
#      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 =
LOBJS   =

SOURCES	= cccbs.c  cccbs-alt.c
TESTS	= cccbs    cccbs-alt

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
#######################################################################

cccbs.o:	cccbs.c

cccbs-alt.o:	cccbs-alt.c

ifeq (${LIBTEST},)
# There is nothing to put in the library

else

endif
@


1.2
log
@Removed TOP, added SOURCES, moved TESTS, general cleanup.
@
text
@d1 2
a2 1
# GNUmakefile          Section: 11.4, Counting by Shrinking
d19 1
a19 1
TESTS	= cccbs  cccbs-alt
d30 1
a30 1
# Make this nothing if you do not want programs striped.
d41 1
a41 1
# Use the following approach when you need to specify the .o files for a target
d43 8
a50 2
# sobel_edge: sobel_edge1.o sobel_edge2.o
#	$(LINK.cc) -o sobel_edge sobel_edge.o sobel_edge2.o $(LDLIBS)
@


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

d17 2
a18 1
SIMPLETESTS =
a31 1

d33 1
a33 3

include ${TOP}/gnumake.iah

a35 2


a43 8


HANDBOOK =

TESTS =  cccbs  cccbs-alt


tests: $(TESTS)
@
