home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume28
/
m0
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-06-05
|
783b
|
46 lines
# Makefile for M0
# christian tschudin, may 1994
# possible values for "OS":
# so4 for SunOS 4.1.3
# so5 for SunOS 5.1 (aka Solaris 2.1)
# ult for DEC Ultrix v4.3
# osf for DEC OSF/1 v1.3
# dos for MS/DOS >5.x
#
OS=so4
# default paths where binaries, M0 files and man pages
# should be installed and/or can be found:
# be explicit for MS/DOS:
#CWD=\\\\cft\\\\msgr\\\\src
# so4
CWD=$(PWD)
# so5 and osf:
#CWD=/user/u2/tschudin/msgr/src
# ult:
#CWD=/guru/tschudin/m0
M0DEFBINPATH=$(CWD)
M0DEFLIBPATH=$(CWD)
M0DEFMANPATH=$(CWD)
# add -DDEBUG for enabling tracing information
COPT= -DDEBUG
# -------------------------------------------------------------------------
# here we go ...
include makefile.$(OS)
all: exefiles
include makefile.all
exefiles: $(EXEFILES)
# eof