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


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

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

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


desc
@GNUmakefile for the Sequential Component Labeling algorithm.
@


1.3
log
@Added standard header, support for LIBTEST.
@
text
@# GNUmakefile          Section: 11.3, Sequential Component Labeling
#      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
#######################################################################

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

HEADERS	= sequential-component-labeling.h
LOBJS	=sequential-component-labeling.o

SOURCES	= sequential-component-labeling.h  sequential-component-labeling.c \
	  test-scl.c
TESTS	= test-scl

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},)

sequential-component-labeling.o:	sequential-component-labeling.h \
					sequential-component-labeling.c

test-scl.o:	test-scl.c	sequential-component-labeling.h

test-scl:	sequential-component-labeling.o  test-scl.o
	${LINK.cc} -o $@@ $@@.o sequential-component-labeling.o ${LDLIBS}
	strip $@@

else

test-scl.o:	test-scl.c

endif
@


1.2
log
@Corrected misspellings of files in lib and headers targets.
Added test-sci.o dependencies on sequential-component-labeling.h
  so it would not try to compile before the header file was checked out.
@
text
@d1 1
a1 1
# GNUmakefile          Section: 11.3
d32 1
a32 1
# Make this nothing if you do not want programs striped.
d43 2
d52 7
@


1.1
log
@Initial revision
@
text
@d16 2
a17 2
HEADERS	= sequential-compent-labeling.h
LOBJS	=sequential-compent-labeling.o
d46 1
a46 1
test-scl.o:	test-scl.c
d48 1
a48 1
test-scl:	test-scl.o  sequential-component-labeling.o
@
