mirror of
https://github.com/open-simh/simtools.git
synced 2026-04-27 12:28:44 +00:00
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.
35 lines
977 B
Plaintext
35 lines
977 B
Plaintext
|
|
CCFLAGS = "-g"
|
|
|
|
all : ods2
|
|
|
|
ods2 : ods2.o rms.o direct.o update.o access.o device.o phyunix.o cache.o vmstime.o
|
|
cc $(CCFLAGS) -o ods2 ods2.o rms.o direct.o update.o access.o device.o phyunix.o cache.o vmstime.o
|
|
|
|
vmstime.o : vmstime.c vmstime.h
|
|
cc -c $(CCFLAGS) $(DEFS) vmstime.c
|
|
|
|
cache.o : cache.c cache.h ssdef.h
|
|
cc -c $(CCFLAGS) $(DEFS) cache.c
|
|
|
|
phyunix.o : phyunix.c phyio.h ssdef.h
|
|
cc -c $(CCFLAGS) $(DEFS) phyunix.c
|
|
|
|
device.o : device.c ssdef.h access.h phyio.h
|
|
cc -c $(CCFLAGS) $(DEFS) device.c
|
|
|
|
access.o : access.c ssdef.h access.h phyio.h
|
|
cc -c $(CCFLAGS) $(DEFS) access.c
|
|
|
|
update.o : update.c ssdef.h access.h
|
|
cc -c $(CCFLAGS) $(DEFS) update.c
|
|
|
|
direct.o : direct.c direct.h access.h fibdef.h descrip.h ssdef.h
|
|
cc -c $(CCFLAGS) $(DEFS) direct.c
|
|
|
|
rms.o : rms.c rms.h direct.h access.h fibdef.h descrip.h ssdef.h
|
|
cc -c $(CCFLAGS) $(DEFS) rms.c
|
|
|
|
ods2.o : ods2.c ssdef.h descrip.h access.h rms.h
|
|
cc -c $(CCFLAGS) $(DEFS) ods2.c
|