File:  [OS/2 SDKs] / os2sdk / demos / apps / lqh / lqhdll
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Thu Aug 9 12:26:06 2018 UTC (7 years, 9 months ago) by root
Branches: msft, MAIN
CVS tags: os2sdk-1988, HEAD
Microsoft OS/2 SDK 03-01-1988

# Make file for box.dll (dynamic link library)
#
#
# Compiler options:
#   -c:  create object file only
#   -As  small model
#     n  near data pointers
#     u  upon function entry, DS is saved, then made to point to the named
#        data segment. DS is restored on exit from the function.
#   -Gs  disable stack checking
#     2  create code for 80286
#   -Ox  optimize for speed
#   -Zp  pack structures
#   -Zl  do not add default libararies

# Assemlber options:
#   /MX  preserve case in public and external names


CFLAGS = -c -Asnu -Gs2 -Ox -Zp -Zl
ASMFLAGS = /MX
LIST = box.obj stringsc.obj stringsa.obj

box.obj: box.c
    cl $(CFLAGS) box.c

stringsc.obj: stringsc.c
    cl $(CFLAGS) stringsc.c

stringsa.obj: stringsa.asm
    masm $(ASMFLAGS) stringsa.asm;

lqhdll.dll: $(LIST) lqhdll.def
  link  $(LIST), lqhdll.dll, NUL, doscalls /NOD /NOI, lqhdll.def

lqhdll.lib: lqhdll.dll lqhdll.def
    implib lqhdll.lib lqhdll.def

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.