#
# Revision control info:
# $Id: Makefile 1.1 1995/10/23 09:29:35 JöG Exp JöG $
#
# $Log: Makefile $
# Revision 1.1  1995/10/23  09:29:35  JöG
# Initial revision
#

#################################
#								#
# SAS C 6.55 makefile			#
# for the Bump project			#
#								#
#								#
# Jörgen Grahn					#
# 1995-10-22					#
#								#
#################################

MAIN	= 
SRC		= bump.c
HDRS	= 
OBJS	= bump.o
OTHER	= SCOPTIONS
RCS		= $(SRC) $(HDRS) $(OTHER)
NO_RCS	= Makefile

#################################

all: bump

#################################

bump: bump.o
	$(CC) LINK TO $@ FROM bump.o

#################################

bump.o: bump.c

#################################

checkout:
# start working on the project
# the -M flag is a bit questionable; see the docs
	co -l -M $(RCS)

#################################

checkin:
# end working on the project for now
	ci -r $(RCS)

#################################

archive:
# store the current state of the project
# don't forget reloading any files
# currently in your editor!
	ci -l $(RCS)

#################################

install:
# to make a version accessible;
# put it on the path along with
# icons/support files, possibly
# docs as well
	Copy CLONE bump TO B:

#################################

clean:
# remove all generated files
	Delete \#?.(o|lnk) bump
