new makefile.amiga

Selden E Ball Jr ((no email))
Mon, 14 Feb 1994 19:39:05 -0400 (EDT)

Richard,

Here's the updated makefile.amiga

Selden
==================
###############################################################################
# Amiga makefile for Xpress reader using gcc
# created from Unix makefile by S.Ball 2/14/94
###############################################################################
###############################################################################
## #
## @(#) makefile.ami; Rel: 1.1.0.0; Get date: 2/11/94 at 13:58:51
## @(#) Last delta: 1/8/94 at 10:58:35
## @(#) SCCS File: /user/rds/Xpress/src/s.makefile.ami
## #
###############################################################################
CC= gcc

#CFLAGS= -g
CFLAGS= -O -DMD5=1

OBJECTS= x.o news.o fill.o strings.o stock.o unix-io.o tfind.o tsearch.o\
md5.o

all: x

x: $(OBJECTS)
$(CC) $(CFLAGS) -o x $(OBJECTS)

clean:
c:delete $(OBJECTS)

x.o: x.h io.h
news.o: x.h md5.h global.h
fill.o: x.h
strings.o: x.h
stock.o: x.h
tfind.o: search.h
tsearch.o: search.h
md5.o: md5.h global.h
==================