Files
open-simh.simtools/extracters/ods2/makefile.solaris
Timothe Litt b70fc2f639 Upgrade to version 1.3 = Hunter Goatley
This version was on the VMS FREEWARE disk at some point.

It shipped with the included .exes, though modern windows systems certainly don't support the
direct access to SCSI DLL that's used.
2016-02-21 19:07:54 -05:00

37 lines
1017 B
Plaintext

CCFLAGS = "-g"
DEFS = "-DVERSION=\"v1.3\""
all : ods2
ods2 : ods2.o rms.o direct.o update.o access.o device.o phyunix.o cache.o vmstime.o
gcc $(CCFLAGS) -oods2 ods2.o rms.o direct.o update.o access.o device.o phyunix.o cache.o vmstime.o
vmstime.o : vmstime.c vmstime.h
gcc -c $(CCFLAGS) $(DEFS) vmstime.c
cache.o : cache.c cache.h ssdef.h
gcc -c $(CCFLAGS) $(DEFS) cache.c
phyunix.o : phyunix.c phyio.h ssdef.h
gcc -c $(CCFLAGS) $(DEFS) phyunix.c
device.o : device.c ssdef.h access.h phyio.h
gcc -c $(CCFLAGS) $(DEFS) device.c
access.o : access.c ssdef.h access.h phyio.h
gcc -c $(CCFLAGS) $(DEFS) access.c
update.o : update.c ssdef.h access.h
gcc -c $(CCFLAGS) $(DEFS) update.c
direct.o : direct.c direct.h access.h fibdef.h descrip.h ssdef.h
gcc -c $(CCFLAGS) $(DEFS) direct.c
rms.o : rms.c rms.h direct.h access.h fibdef.h descrip.h ssdef.h
gcc -c $(CCFLAGS) $(DEFS) rms.c
ods2.o : ods2.c ssdef.h descrip.h access.h rms.h
gcc -c $(CCFLAGS) $(DEFS) ods2.c