DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ M T ┃
Length: 1450 (0x5aa) Types: TextFile Names: »MAKEFILE«
└─⟦afbc8121e⟧ Bits:30000532 8mm tape, Rational 1000, MC68020_OS2000 7_2_2 └─ ⟦77aa8350c⟧ »DATA« └─⟦f794ecd1d⟧ └─⟦this⟧
#-------------------------------------------------------------------- # To generate the OS-9 tcp/ip server. # # August 26, 1987 # # Tcplib must be made before Server. #-------------------------------------------------------------------- all: tcplib_t tcplib_n server server_t echo "**** make is complete ****" #-------------------------------------------------------------------------- tcplib_t: tcplib.c tcperr.r /H0/TCP/INCL/msocket.h # TCPLIB with TRACE cc tcplib.c -dTRACE -r copy -r tcplib.r tcplib_t.r del tcplib.r tcplib_n: tcplib.c tcperr.r /H0/TCP/INCL/msocket.h # TCPLIB with no TRACE cc tcplib.c -r copy -r tcplib.r tcplib_n.r tcperr.r: tcperr.c /H0/TCP/INCL/msocket.h cc tcperr.c -r #-------------------------------------------------------------------- server: server.r /H0/TCP/INCL/msocket cc server.r /H0/TCP/SERVER/tcplib_n.r /H0/TCP/SERVER/tcperr.r \ -f=/H0/TCP/SERVER/server server.r: server.c /H0/TCP/INCL/msocket.h cc server.c -r #-------------------------------------------------------------------- server_t: server_t.r /H0/TCP/INCL/msocket cc server.r /H0/TCP/SERVER/tcplib_t.r /H0/TCP/SERVER/tcperr.r \ -f=/H0/TCP/SERVER/server_t server_t.r: server.c /H0/TCP/INCL/msocket.h cc server.c -r #--------------------------------------------------------------------