home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 2
/
goldfish_vol2_cd1.bin
/
files
/
comm
/
misc
/
elcheapofax
/
rcs
/
makefile,v
< prev
next >
Wrap
Text File
|
1993-12-21
|
3KB
|
177 lines
head 1.4;
access;
symbols
OCT93:1.4;
locks;
comment @# @;
1.4
date 93.10.25.02.14.27; author Rhialto; state Exp;
branches;
next 1.3;
1.3
date 93.07.13.06.07.07; author Rhialto; state Exp;
branches;
next 1.2;
1.2
date 93.06.11.16.33.37; author Rhialto; state Exp;
branches;
next 1.1;
1.1
date 93.06.11.14.53.53; author Rhialto; state Exp;
branches;
next ;
desc
@The Makefile for the root directory
@
1.4
log
@Make +FBOR flexible; fix RTC detection bug.
@
text
@####
#
# Makefile for ElCheapoFax using DICE
#
# $Id: Makefile,v 1.3 1993/07/13 06:07:07 Rhialto Exp $
CFLAGS=-INewIFF -proto -r
LDFLAGS=-r
#LD=gcc
#CC=gcc
#AS=gcc
#CFLAGS=-INewIFF -Wall -O -2.0
#LDFLAGS=-lamy
all: iff2fax fax2iff asc2fax append fax.guide fax.man fax.info
IFF2FAX_O = iff2fax.o tofax.o parse.o unpacker.o Hook.o faxcmd/getopt.o
iff2fax: $(IFF2FAX_O)
$(LD) $(IFF2FAX_O) -o iff2fax $(LDFLAGS)
FAX2IFF_O = fax2iff.o fromfax.o parse.o apack.o Hook.o faxcmd/getopt.o
fax2iff: $(FAX2IFF_O)
$(LD) $(FAX2IFF_O) -o fax2iff $(LDFLAGS)
ASC2FAX_O = asc2fax.o tofax.o faxcmd/getopt.o
asc2fax: $(ASC2FAX_O)
$(LD) $(ASC2FAX_O) -o asc2fax $(LDFLAGS)
APPEND_O = append.o faxcmd/getopt.o
append: $(APPEND_O)
$(LD) $(APPEND_O) -o append $(LDFLAGS)
fax.man: fax.texi
makeinfo --amiga-39 --no-headers -o fax.man fax.texi
fax.guide: fax.texi
makeinfo --amiga -o fax.guide fax.texi
fax.info: fax.texi
makeinfo -o fax.info fax.texi
apack.o: apack.asm
A68k -oapack.o apack.asm
#For gcc:
#Hook.o: Hook.s
# $(AS) -c $(AFLAGS) -o Hook.o Hook.s
install:
copy iff2fax C:
copy asc2fax C:
copy append C:
copy all2fax.rexx REXX:
copy faxcmd/faxsend C:
copy faxcmd/faxrecv C:
copy printers/faxprinter PRINTERS:
ci:
ci -u RCS/*,v
depend:
mkd -INewIFF/ -f *.(c|h)
# 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.
append.o: append.c
fax2iff.o: faxfile.h newiff/iffp/packer.h newiff/iffp/ilbm.h newiff/iffp/iff.h fax2iff.c
iff2fax.o: faxfile.h newiff/iffp/packer.h newiff/iffp/ilbm.h newiff/iffp/iff.h iff2fax.c
packer.o: newiff/iffp/packer.h packer.c
fromfax.o: faxfile.h g3.h fromfax.c
asc2fax.o: faxfile.h asc2fax.c
parse.o: newiff/iffp/iff.h parse.c
tofax.o: faxfile.h g3.h tofax.c
unpacker.o: newiff/iffp/packer.h newiff/iffp/ilbm.h unpacker.c
@
1.3
log
@Due to ci -u bug (when file unchanged), change into ci/co -u.
@
text
@d5 1
a5 1
# $Id: Makefile,v 1.2 1993/06/11 16:33:37 Rhialto Exp $
a41 5
tofax.o: faxfile.h g3.h
fromfax.o: faxfile.h g3.h
fax2iff.o: faxfile.h
iff2fax.o: faxfile.h
asc2fax.o: faxfile.h
d61 20
a80 2
ci RCS/*,v
co -u RCS/*,v
@
1.2
log
@First real RCS checkin
@
text
@d5 1
a5 1
# $Id$
d66 2
a67 1
ci -u RCS/*,v
@
1.1
log
@Initial revision
@
text
@d3 1
a3 1
# Makefile for FreeFax using DICE
d5 1
d15 1
a15 1
all: iff2fax fax2iff asc2fax append fax.man
d33 2
a34 2
fax.man: fax.n
nro fax.n >fax.man
d36 6
d64 3
@