mirror of
https://github.com/open-simh/simtools.git
synced 2026-04-27 20:38:01 +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.
37 lines
1017 B
Plaintext
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
|