##########################################################################
##  Makefile for Ncohafmuta 1.1.0 utilities  by: Cygnus                 ## 
##                                         Last modified: Apr 12,1997   ##
##########################################################################

# Name of the executable to be made
CONVBIN          = convert
ADDBIN           = addstruct

##########################################################################
# Your compiler program. Must be 
# able to grok ANSI C
##########################################################################
#
CC               = gcc
#CC               = cc

# Files used by the program
CONVCFILES        = 110convert.c
ADDCFILES         = addstruct.c

# Makefile arguments
#
all:		clean \
		$(CONVBIN) \
		$(ADDBIN)
				@echo 'Made all'

$(CONVBIN): $P Makefile
	  $(CC) -o $(CONVBIN) $(CONVCFILES)

$(ADDBIN): $P $(OFILES) Makefile
	  $(CC) -o $(ADDBIN) $(ADDCFILES)

clean:
	rm -f $(CONVBIN) $(ADDBIN)

# DO NOT REMOVE THIS LINE OR CHANGE ANYTHING AFTER IT #
110convert.o: 110convert.c 
addstruct.o: addstruct.c 


