ncohafmuta-1.4.2/bot/
ncohafmuta-1.4.2/helpfiles/
ncohafmuta-1.4.2/lib/emailver/
ncohafmuta-1.4.2/tzinfo/Atlantic/
ncohafmuta-1.4.2/tzinfo/Brazil/
ncohafmuta-1.4.2/tzinfo/Chile/
ncohafmuta-1.4.2/tzinfo/Indian/
ncohafmuta-1.4.2/tzinfo/Mexico/
ncohafmuta-1.4.2/tzinfo/Mideast/
ncohafmuta-1.4.2/tzinfo/SystemV/
ncohafmuta-1.4.2/utils/
ncohafmuta-1.4.2/utils/code_fragments/new_config/
##########################################################################
##  Makefile for Ncohafmuta 1.4.x utilities  by: Cygnus                 ## 
##                                         Last modified: Apr 12,1997   ##
##########################################################################

# Name of the executable to be made
ADDBIN           = addstruct
TRIMBIN          = trimbackups

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

# Files used by the program
ADDCFILES         = addstruct.c
TRIMCFILES        = trimbackups.c

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

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

$(TRIMBIN): $P $(OFILES) Makefile
	  $(CC) -o $(TRIMBIN) $(TRIMCFILES)

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

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