####
#
#  Makefile for gnu-fax 3.2.1 libfax directory, using DICE

LIBNAME= fax.lib
CFLAGS=-D_PROTO -proto -r

#CFLAGS=DEFINE=_PROTO
#CC=sc DEBUG=FF
#.c.o:
#	 $(CC) $< TO $@ $(CFLAGS)

SRCS = gen.c msgs.c response.c send.c swap.c tty.c \
	recv.c log.c
OBJS = gen.o msgs.o response.o send.o swap.o tty.o \
	recv.o log.o

$(LIBNAME): $(OBJS)
	join $(OBJS) as $(LIBNAME)

# DO NOT DELETE THIS LINE - important for making dependencies!
#|.c|$/.o|
#|.h|
# From this line on, everything has been created by MakeDepend.
# Anything you add yourself will be deleted automagically.

log.o: log.h log.c
recv.o: recv.h tty.h write.h read.h swap.h response.h c2proto.h log.h recv.c
tty.o: read.h write.h tty.h log.h tty.c
response.o: response.h read.h c2proto.h log.h response.c
swap.o: swap.h c2proto.h swap.c
send.o: send.h tty.h write.h read.h swap.h response.h c2proto.h log.h send.c
msgs.o: msgs.h c2proto.h msgs.c
gen.o: tty.h gen.h write.h read.h response.h c2proto.h log.h gen.c
