
#
#  Makefore for transcript (print utility for reve).
#
#  @(#)Makefile 1.2 94/01/20
#
#  Copyright (C) 1991 - Valerie Haecky.
#  All rights reserved.
#
#  Permission is granted to copy this source, for redistribution
#  in source form only, provided the news headers in "substantially
#  unaltered format" are retained, the introductory messages are not
#  removed, and no monies are exchanged.
#
#  Permission is also granted to copy this source, without the
#  news headers, for the purposes of making an executable copy by
#  means of compilation, provided that such copy will not be used
#  for the purposes of competition in any othello tournaments, without
#  prior permission from the authors.
#
#  No responsibility is taken for any errors on inaccuracies inherent
#  either to the comments or the code of this program, but if reported
#  (see README file), then an attempt will be made to fix them.
#
#=========================================================================
#  Compilation flags and standard macro definitions.
#
CFLAGS  = -O 
CC      = gcc
#==========================================================================

.KEEP_STATE:

STDSRCS	= trans.c
OTHERS  = README trans.man trans.man.text Makefile trans.ps

trans:	trans.c trans.ps
	$(CC) $(CFLAGS) trans.c -o trans

clean:         
	rm -f *.o trans core

lint:
	lint $(STDSRCS)

create: SCCS
	-sccs create $(STDSRCS) $(OTHERS)

SCCS:
	mkdir SCCS
	chmod 755 SCCS

trans.o: trans.c 
