home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
001-099
/
ff093.lzh
/
MicroEmacs
/
source
/
src.arc
/
makefile
< prev
next >
Wrap
Makefile
|
1987-08-16
|
1KB
|
47 lines
# Makefile for Amiga MicroEMACS V38i
# Added some flexability to the dependency of the header files. P. LINDSAY
# need these flags so Aztec will be happy
CFLAGS= +l -Z12000
HFILES = estruct.h edef.h
HBINDFUNC = efunc.h ebind.h
HEPATH = epath.h
HEVAR = evar.h
OEPATH = bind.o
OEBINDEFUNC = main.o
OEVAR = eval.o
OFILES= ansi.o basic.o $(OEPATH) buffer.o crypt.o dg10.o \
display.o $(OEVAR) exec.o file.o fileio.o \
hp110.o hp150.o ibmpc.o input.o isearch.o line.o \
lock.o $(OEBINDEFUNC) random.o region.o search.o spawn.o \
st520.o tcap.o termio.o console.o tipc.o vmsvt.o vt52.o \
window.o word.o z309.o
OFILES1= ansi.o basic.o buffer.o crypt.o dg10.o \
display.o exec.o file.o fileio.o \
hp110.o hp150.o ibmpc.o input.o isearch.o line.o \
lock.o random.o region.o search.o spawn.o \
st520.o tcap.o termio.o console.o tipc.o vmsvt.o vt52.o \
window.o word.o z309.o
CFILES= ansi.c basic.c bind.c buffer.c crypt.c dg10.c \
display.c eval.c exec.c file.c fileio.c \
hp110.c hp150.c ibmpc.c input.c isearch.c line.c \
lock.c main.c random.c region.c search.c spawn.c \
st520.c tcap.c termio.c console.c tipc.c vmsvt.c vt52.c \
window.c word.c z309.c
emacs: $(OFILES)
ln $(OFILES) -o emacs -lc32
$(OEPATH): $(HFILES) $(HEPATH)
$(OEBINDEFUNC): $(HFILES) $(HBINDFUNC)
$(OEVAR): $(HFILES) $(HEVAR)
$(OFILES1): $(HFILES)