home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Overload
/
ShartewareOverload.cdr
/
comm
/
jmodem.zip
/
JMODEM
next >
Wrap
Text File
|
1990-06-20
|
1KB
|
49 lines
#
#
# MAKE file for JMODEM, the 'C' version.
# Created 01-FEB-1990 Richard B. Johnson
# 405 Broughton Drive
# Beverly, Massachusetts 01915
# BBS (508) 922-3166
# Execute MAKE JMODEM
#
# Revised 21-APR-1990 Richard B. Johnson
#
# Changed this MAKE file after several "professional programmers"
# informed me that the previous one was too amateur and simplistic.
# In keeping with maintaining the highest degree of complexity possible
# to appease these bombastic mutants of diddly-wop, I made this file
# unreadable by incorporating macros for no useful purpose. The next
# revision will remove all spaces and tabs <grin>.
#
#
nam = jmodem
headers = $(nam).h $(nam)
src = $*.c
exe = $(nam).exe
cmp = CL /Gs /AS /c /J /Oais /W3 /DNOENV /Fl$*.cod $(src)
lnk = Link/NOE/MAP/EXEPACK
objects = $(nam)_a.obj $(nam)_b.obj $(nam)_c.obj \
$(nam)_d.obj $(nam)_e.obj $(nam)_f.obj
$(nam)_a.obj: $(headers) $(src)
$(cmp)
$(nam)_b.obj: $(headers) $(src)
$(cmp)
$(nam)_c.obj: $(headers) $(src)
$(cmp)
$(nam)_d.obj: $(headers) $(src)
$(cmp)
$(nam)_e.obj: $(headers) $(src) uart.h
$(cmp)
$(nam)_f.obj: $(headers) $(src) screen.h
$(cmp)
$(exe): $(headers) $(objects)
$(lnk) $(objects), $(exe);